cctools
pattern.h
Go to the documentation of this file.
1/* Copyright (C) 2022 The University of Notre Dame
2 * This software is distributed under the GNU General Public License.
3 * See the file COPYING for details.
4 */
5
6#ifndef PATTERN_H
7#define PATTERN_H
8
9#include <stdarg.h>
10#include <stddef.h>
11
25ptrdiff_t pattern_vmatch (const char *str, const char *patt, va_list va);
26ptrdiff_t pattern_match (const char *str, const char *patt, ...);
27
28#endif /* PATTERN_H */