libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SysString.cxx
1// C++
2#include <ostream>
3
4// cosmos
5#include <cosmos/SysString.hxx>
6
7std::ostream& operator<<(std::ostream &o, const cosmos::SysString str) {
8 o << str.raw();
9 return o;
10}
11
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33