diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-05-29 21:06:49 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-05-29 21:06:49 +0200 |
commit | ddfc7091d2698d36c1cfec49eaaad96b278bb37b (patch) | |
tree | 6eddda98b7c8b3f723e95d8b19505a512db1593d /src/irmd/utils.h | |
parent | 81cdb27742f9ae93169b0b03d1a45090c4354f89 (diff) | |
parent | a76b638a370cd0cdd087ec780e6b1f8d18bac66d (diff) | |
download | ouroboros-ddfc7091d2698d36c1cfec49eaaad96b278bb37b.tar.gz ouroboros-ddfc7091d2698d36c1cfec49eaaad96b278bb37b.zip |
Merged in sandervrijders/ouroboros/be (pull request #121)
irmd: Add wildcarding of DIF names
Diffstat (limited to 'src/irmd/utils.h')
-rw-r--r-- | src/irmd/utils.h | 27 |
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); |