]> www.ginac.de Git - cln.git/blob - src/base/string/cl_st_c2.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / base / string / cl_st_c2.cc
1 // constructor cl_string (const char * s).
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/string.h"
8
9
10 // Implementation.
11
12 namespace cln {
13
14 extern cl_heap_string* cl_make_heap_string (const char * ptr, unsigned long len);
15
16 cl_string::cl_string (const char * ptr, unsigned long len)
17 {
18         pointer = cl_make_heap_string(ptr,len);
19 }
20
21 }  // namespace cln