Deleted Added
full compact
fnmatch.h (1540) fnmatch.h (19059)
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 27 unchanged lines hidden (view full) ---

36#ifndef _FNMATCH_H_
37#define _FNMATCH_H_
38
39#define FNM_NOMATCH 1 /* Match failed. */
40
41#define FNM_NOESCAPE 0x01 /* Disable backslash escaping. */
42#define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
43#define FNM_PERIOD 0x04 /* Period must be matched by period. */
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 27 unchanged lines hidden (view full) ---

36#ifndef _FNMATCH_H_
37#define _FNMATCH_H_
38
39#define FNM_NOMATCH 1 /* Match failed. */
40
41#define FNM_NOESCAPE 0x01 /* Disable backslash escaping. */
42#define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
43#define FNM_PERIOD 0x04 /* Period must be matched by period. */
44#define FNM_ICASE 0x08 /* case insensitive search */
44
45#include <sys/cdefs.h>
46
47__BEGIN_DECLS
48#ifndef _POSIX_SOURCE
49int fnmatch __P((const char *, const char *, int));
50#endif
51__END_DECLS
52
53#endif /* !_FNMATCH_H_ */
45
46#include <sys/cdefs.h>
47
48__BEGIN_DECLS
49#ifndef _POSIX_SOURCE
50int fnmatch __P((const char *, const char *, int));
51#endif
52__END_DECLS
53
54#endif /* !_FNMATCH_H_ */