libcw/cwText.h
kpl d6e0f5e675 Many changes and additions.
Added serial port, websocket, midi and initial audio functionality.
2019-12-24 10:05:24 -05:00

15 lines
282 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 );
int textCompare( const char* s0, const char* s1, unsigned n);
}
#endif