next up previous contents
Next: 6.4 Small utility functions Up: 6.3 Hash tables Previous: 6.3 Hash tables

6.3.1 Simple output streams C++ source files

These simple streams are kept in klib/str.h and klib/str.C. The only dependency is stdio.h for the ConOStr.

<str.h*>=
<Read the literate code instead warning. >
#ifndef __S_STR_H
#define __S_STR_H 1

<Console output stream dependencies. >

<Output stream new line. >
<Output stream. >
<Console output stream. >
<Output stream utilities. >

extern ConsOStr kcout;      // Simple kernel console ouput stream.
#endif // __S_STR_H

<str.C*>=
<Read the literate code instead warning. >

#include <klib/str.h>       // Exported interface.

<Output stream new line initializer. >
ConsOStr kcout;



Francisco J. Ballesteros
1998-05-25