libcw/cwText.h
2019-12-18 22:24:12 -05:00

14 lines
218 B
C++

#ifndef cwText_H
#define cwText_H
namespace cw
{
unsigned textLength( const char* s );
// if both s0 and s1 are nullptr then a match is indicated
int textCompare( const char* s0, const char* s1 );
}
#endif