summaryrefslogtreecommitdiff
path: root/src/irmd/utils.h
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-05-29 20:25:41 +0200
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-05-29 20:57:48 +0200
commita76b638a370cd0cdd087ec780e6b1f8d18bac66d (patch)
tree6eddda98b7c8b3f723e95d8b19505a512db1593d /src/irmd/utils.h
parent81cdb27742f9ae93169b0b03d1a45090c4354f89 (diff)
downloadouroboros-a76b638a370cd0cdd087ec780e6b1f8d18bac66d.tar.gz
ouroboros-a76b638a370cd0cdd087ec780e6b1f8d18bac66d.zip
irmd: Add wildcarding of DIF names
This adds wildcarding of DIF names so that application developers can for instance specify home.* to specify all home DIFs.
Diffstat (limited to 'src/irmd/utils.h')
-rw-r--r--src/irmd/utils.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/irmd/utils.h b/src/irmd/utils.h
new file mode 100644
index 00000000..aa8a38f1
--- /dev/null
+++ b/src/irmd/utils.h
@@ -0,0 +1,27 @@
+/*
+ * Ouroboros - Copyright (C) 2016
+ *
+ * Utils of the IPC Resource Manager
+ *
+ * Sander Vrijders <sander.vrijders@intec.ugent.be>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/*
+ * Checks whether the string argument matches the pattern argument,
+ * which is a wildcard pattern.
+ */
+int wildcard_match(const char * pattern, const char * string);