16 lines
No EOL
390 B
C
16 lines
No EOL
390 B
C
/*
|
|
search.h
|
|
検索するための関数群
|
|
(C)2012 B11T3074C, B11T3011K - MIT License
|
|
*/
|
|
|
|
#ifndef SEARCH_H
|
|
#define SEARCH_H
|
|
|
|
int match(char *pattern, const char *string);
|
|
int andmatch(char *pattern, const char *string);
|
|
int ormatch(char *pattern, const char *string);
|
|
char *strtok_r(char *str, const char *delim, char **saveptr);
|
|
int smatch(const char *pattern, const char *string);
|
|
|
|
#endif |