inlib  1.2.0
/Users/barrand/private/dev/softinex/old/inexlib-1.2/inlib/inlib/chars
Go to the documentation of this file.
00001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
00002 // See the file inlib.license for terms.
00003 
00004 #ifndef inlib_chars
00005 #define inlib_chars
00006 
00007 namespace inlib {
00008 
00009 // some char ASCII code :
00010 // \0      : 0
00011 // \n = LF : 10 
00012 // \r = CR : 13
00013 // \t = HT : 9
00014 // ,       : 44
00015 
00016 inline char LF() {return 10;}
00017 inline char CR() {return 13;}
00018 
00019 }
00020 
00021 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines