21 lines
839 B
C
21 lines
839 B
C
/****************************************************************
|
|
* *
|
|
* Copyright 2001, 2009 Fidelity Information Services, Inc *
|
|
* *
|
|
* This source code contains the intellectual property *
|
|
* of its copyright holder(s), and is made available *
|
|
* under a license. If you do not know the terms of *
|
|
* the license, please stop and do not read further. *
|
|
* *
|
|
****************************************************************/
|
|
|
|
#ifndef MATCHC_INCLUDED
|
|
#define MATCHC_INCLUDED
|
|
|
|
/* Character oriented match call */
|
|
unsigned char *matchc(int del_len, unsigned char *del_str, int src_len, unsigned char *src_str, int *res, int *numpcs);
|
|
/* Byte oriented match call */
|
|
unsigned char *matchb(int del_len, unsigned char *del_str, int src_len, unsigned char *src_str, int *res, int *numpcs);
|
|
|
|
#endif /* MATCHC_INCLUDED */
|