Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:11:15

0001 // @(#)root/base:$Id$
0002 // Author: Fons Rademakers   04/08/95
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_Match
0013 #define ROOT_Match
0014 
0015 
0016 //////////////////////////////////////////////////////////////////////////
0017 //                                                                      //
0018 //  Declarations for regular expression routines.                       //
0019 //                                                                      //
0020 //////////////////////////////////////////////////////////////////////////
0021 
0022 #include <sys/types.h>
0023 
0024 typedef unsigned short Pattern_t;
0025 
0026 int         Makepat(const char*, Pattern_t*, int);
0027 const char* Matchs(const char*, size_t len, const Pattern_t*,
0028                    const char**);
0029 
0030 #endif