File: pattern_match.h

package info (click to toggle)
craft 3.5-9
  • links: PTS
  • area: main
  • in suites: woody
  • size: 18,000 kB
  • ctags: 1,602
  • sloc: cpp: 3,794; makefile: 2,319; ansic: 857; sh: 385
file content (18 lines) | stat: -rw-r--r-- 537 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef pattern_match_h
#define pattern_match_h

/*======================================================================*/
/*                                                                      */
/* Routines for pattern matching                                        */
/*                                                                      */
/*======================================================================*/

#include "stdio.h"

#include "io.h"
#include "bool.h"


bool p_match (char string [], char pattern []);

#endif