]> www.ginac.de Git - cln.git/blob - src/base/string/output/cl_st_print.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / base / string / output / cl_st_print.cc
1 // fprint().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/string.h"
8
9
10 // Implementation.
11
12 #include "cln/io.h"
13
14 namespace cln {
15
16 void fprint (std::ostream& stream, const cl_string& str)
17 {
18         stream.write(str.asciz(),str.length());
19 }
20
21 }  // namespace cln