From a76b638a370cd0cdd087ec780e6b1f8d18bac66d Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Sun, 29 May 2016 20:25:41 +0200 Subject: 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. --- src/irmd/utils.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/irmd/utils.h (limited to 'src/irmd/utils.h') 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 + * + * 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); -- cgit v1.2.3