summaryrefslogtreecommitdiffstats
path: root/src/simple_pattern.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2018-11-07 12:19:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2018-11-07 12:20:17 +0000
commita64a253794ac64cb40befee54db53bde17dd0d49 (patch)
treec1024acc5f6e508814b944d99f112259bb28b1be /src/simple_pattern.h
parentNew upstream version 1.10.0+dfsg (diff)
downloadnetdata-a64a253794ac64cb40befee54db53bde17dd0d49.tar.xz
netdata-a64a253794ac64cb40befee54db53bde17dd0d49.zip
New upstream version 1.11.0+dfsgupstream/1.11.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/simple_pattern.h')
-rw-r--r--src/simple_pattern.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/simple_pattern.h b/src/simple_pattern.h
deleted file mode 100644
index d0b75af7e..000000000
--- a/src/simple_pattern.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef NETDATA_SIMPLE_PATTERN_H
-#define NETDATA_SIMPLE_PATTERN_H
-
-typedef enum {
- SIMPLE_PATTERN_EXACT,
- SIMPLE_PATTERN_PREFIX,
- SIMPLE_PATTERN_SUFFIX,
- SIMPLE_PATTERN_SUBSTRING
-} SIMPLE_PREFIX_MODE;
-
-typedef void SIMPLE_PATTERN;
-
-// create a simple_pattern from the string given
-// default_mode is used in cases where EXACT matches, without an asterisk,
-// should be considered PREFIX matches.
-extern SIMPLE_PATTERN *simple_pattern_create(const char *list, const char *separators, SIMPLE_PREFIX_MODE default_mode);
-
-// test if string str is matched from the pattern and fill 'wildcarded' with the parts matched by '*'
-extern int simple_pattern_matches_extract(SIMPLE_PATTERN *list, const char *str, char *wildcarded, size_t wildcarded_size);
-
-// test if string str is matched from the pattern
-#define simple_pattern_matches(list, str) simple_pattern_matches_extract(list, str, NULL, 0)
-
-// free a simple_pattern that was created with simple_pattern_create()
-// list can be NULL, in which case, this does nothing.
-extern void simple_pattern_free(SIMPLE_PATTERN *list);
-
-#endif //NETDATA_SIMPLE_PATTERN_H