Subversion Repositories SvarDOS

Rev

Rev 369 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
352 mateuszvis 1
#ifndef HELPERS_H
2
#define HELPERS_H
3
 
4
/* case-insensitive comparison of strings, returns non-zero on equality */
5
int imatch(const char *s1, const char *s2);
6
 
7
/* returns zero if s1 starts with s2 */
8
int strstartswith(const char *s1, const char *s2);
9
 
10
#endif