]> www.ginac.de Git - cln.git/blob - src/base/string/cl_st_null.cc
* Change all C include headers to ISO style within C++ code.
[cln.git] / src / base / string / cl_st_null.cc
1 // cl_null_string.
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 CL_PROVIDE(cl_st_null)
7
8 // Specification.
9 #include "cln/string.h"
10
11 namespace cln {
12
13 extern const cl_string cl_null_string;
14
15 }  // namespace cln
16
17 // Implementation.
18
19 namespace cln {
20
21 const cl_string cl_null_string = cl_string(NULL,0);
22
23 }  // namespace cln
24
25 CL_PROVIDE_END(cl_st_null)