00001 /*---------------------------------------------------------------------------- 00002 secwatch - Copyright (C) 2006 Nic Stevens -- See COPYING for license details 00003 ------------------------------------------------------------------------------ 00004 strutil.h -- Prototypes for the string utility functions 00005 -----------------------------------------------------------------------------*/ 00006 #ifndef __STRUTIL_H 00007 #define __STRUTIL_H 00008 00009 char ** split(char *sep, char * string); 00010 char *ltrim(char *s); 00011 char *rtrim(char *s); 00012 char *trim(char *s); 00013 int strpos(char *haystack, char *needle); 00014 #endif
1.4.6