block: don't put spaces around :
[ironout.git] / strutils.h
blob53cfd3541d37e80576d21b0a5bba36799f8dca07
1 #ifndef _STRUTILS_H
2 #define _STRUTILS_H
4 char *readtoken(char *to, char *from, char* delims);
5 char *readword(char *to, char *from);
6 char *nthtoken(char *to, char *from, char* delims, int n);
7 int startswith(char *heystack, char *needle);
8 int endswith(char *heystack, char *needle);
10 #endif