mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 07:32:04 +02:00
Added strstr_full() and strstr_full_case()
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1309 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
2f4969aefc
commit
a47ce2c449
2 changed files with 22 additions and 5 deletions
|
|
@ -38,8 +38,13 @@ GSList *hashtable_get_keys(GHashTable *hash);
|
|||
|
||||
/* strstr() with case-ignoring */
|
||||
char *stristr(const char *data, const char *key);
|
||||
/* stristr(), but matches only for full words */
|
||||
|
||||
/* like strstr(), but matches only for full words.
|
||||
`icase' specifies if match is case sensitive */
|
||||
char *strstr_full_case(const char *data, const char *key, int icase);
|
||||
char *strstr_full(const char *data, const char *key);
|
||||
char *stristr_full(const char *data, const char *key);
|
||||
|
||||
/* easy way to check if regexp matches */
|
||||
int regexp_match(const char *str, const char *regexp);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue