/usr/include/cln/complex_io.h is in libcln-dev 1.3.3-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | // I/O of complex numbers.
#ifndef _CL_COMPLEX_IO_H
#define _CL_COMPLEX_IO_H
#include "cln/number_io.h"
#include "cln/complex.h"
namespace cln {
// Undocumented input functions
extern const cl_N read_complex (const cl_read_flags& flags, const char * string, const char * string_limit, const char * * end_of_parse);
extern const cl_N read_complex (std::istream& stream, const cl_read_flags& flags);
// Documented input functions
inline std::istream& operator>> (std::istream& stream, cl_N& result)
{
extern cl_read_flags cl_N_read_flags;
result = read_complex(stream,cl_N_read_flags);
return stream;
}
// Undocumented output functions
// Documented output functions
// Gibt eine komplexe Zahl aus.
// print_complex(stream,z);
// > z: komplexe Zahl
// > stream: Stream
extern void print_complex (std::ostream& stream, const cl_print_flags& flags, const cl_N& z);
extern void print_complex (std::ostream& stream, const cl_print_number_flags& flags, const cl_N& z);
inline void fprint (std::ostream& stream, const cl_N& x)
{
extern cl_print_flags default_print_flags;
print_complex(stream,default_print_flags,x);
}
CL_DEFINE_PRINT_OPERATOR(cl_N)
} // namespace cln
#endif /* _CL_COMPLEX_IO_H */
|