1 ////////////////////////////////////////////////////////////////////////////////
2 
3 //   Author:    Andy Rushton
4 //   Copyright: (c) Southampton University 1999-2004
5 //              (c) Andy Rushton           2004 onwards
6 //   License:   BSD License, see ../docs/license.html
7 
8 ////////////////////////////////////////////////////////////////////////////////
9 #include "print_cstring.hpp"
10 
11 namespace stlplus
12 {
13 
print_cstring(std::ostream & device,const char * value)14   void print_cstring(std::ostream& device, const char* value)
15   {
16     device << value;
17   }
18 
19 } // end namespace stlplus
20