libcw/cwText.h

15 lines
282 B
C
Raw Normal View History

2019-12-19 03:24:12 +00:00
#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 );
int textCompare( const char* s0, const char* s1, unsigned n);
2019-12-19 03:24:12 +00:00
}
#endif