]> www.ginac.de Git - cln.git/blobdiff - include/cln/integer_io.h
Fix some comments about undocumented functions in public headers.
[cln.git] / include / cln / integer_io.h
index c1d2b60ee1fe990d3857f5e2d3c4b4f7c69ca5b1..fd319bc12d8dc2ab0db056b43387eb54173002f3 100644 (file)
@@ -8,7 +8,7 @@
 
 namespace cln {
 
-// Undocumented input functions
+// Input functions
 
 // Wandelt eine Zeichenkette mit Integer-Syntax in ein Integer um.
 // Punkte werden überlesen.
@@ -29,8 +29,6 @@ extern const cl_I read_integer (unsigned int base,
 extern const cl_I read_integer (const cl_read_flags& flags, const char * string, const char * string_limit, const char * * end_of_parse);
 extern const cl_I read_integer (std::istream& stream, const cl_read_flags& flags);
 
-// Documented input functions
-
 inline std::istream& operator>> (std::istream& stream, cl_I& result)
 {
        extern cl_read_flags cl_I_read_flags;
@@ -39,7 +37,7 @@ inline std::istream& operator>> (std::istream& stream, cl_I& result)
 }
 
 
-// Undocumented output functions
+// Output functions
 
 // Liefert zu einem Integer >=0  (write-to-string integer :base 10 :radix nil),
 // also die Ziffernfolge als String.
@@ -55,9 +53,6 @@ extern void print_integer (std::ostream& stream, unsigned int base, const cl_I&
 // Dasselbe als String. Mit malloc_hook() alloziert, mit free_hook() freizugeben.
 extern char * print_integer_to_string (unsigned int base, const cl_I& z);
 
-
-// Documented output functions
-
 inline void fprintdecimal (std::ostream& stream, const cl_I& x)
 {
        print_integer(stream,10,x);