summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authoralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-08-12 10:37:16 +0000
committeralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-08-12 10:37:16 +0000
commit3610b0d472d116f52256b101308ebc953a900a46 (patch)
treebaf03ff851b25c45c14b37c843111571d94a9775 /include
parent90a27da529d5a7fb0e08efad9087fa40557b1e67 (diff)
downloadzabbix-3610b0d472d116f52256b101308ebc953a900a46.tar.gz
zabbix-3610b0d472d116f52256b101308ebc953a900a46.tar.xz
zabbix-3610b0d472d116f52256b101308ebc953a900a46.zip
- new trigger function iregexp(), non case-sensitive regexp (Alexei)
[svn merge -r4538:4541 svn://svn.zabbix.com/branches/1.4.2] git-svn-id: svn://svn.zabbix.com/trunk@4542 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'include')
-rw-r--r--include/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index 24416616..22a9fcfa 100644
--- a/include/common.h
+++ b/include/common.h
@@ -614,6 +614,8 @@ int parse_command(const char *command, char *cmd, int cmd_max_len, char *param,
/* Regular expressions */
char *zbx_regexp_match(const char *string, const char *pattern, int *len);
+/* Non case sensitive */
+char *zbx_iregexp_match(const char *string, const char *pattern, int *len);
/* Misc functions */
int cmp_double(double a,double b);