update dev300-m58
[ooovba.git] / dmake / unix / bsd43 / string.h
blobc311e2c05dee6a0d458c0248dfe5f75e00c01dbc
1 /* RCS $Id: string.h,v 1.1.1.1 2000-09-22 15:33:34 hr Exp $
2 --
3 -- SYNOPSIS
4 -- string function headers
5 --
6 -- DESCRIPTION
7 -- Supply correct definitions for certain string functions.
8 --
9 -- AUTHOR
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
12 -- WWW
13 -- http://dmake.wticorp.com/
15 -- COPYRIGHT
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
17 --
18 -- This program is NOT free software; you can redistribute it and/or
19 -- modify it under the terms of the Software License Agreement Provided
20 -- in the file <distribution-root>/readme/license.txt.
22 -- LOG
23 -- Use cvs log to obtain detailed change logs.
25 #ifndef STRING_h
26 #define STRING_h
29 ** BSD does this wrong
31 #include <strings.h>
33 #include "stdmacs.h"
34 extern char* strpbrk ANSI((char* src, char* any));
36 #ifndef DBUG
37 #define strchr(str,c) index(str,c)
38 #define strrchr(str,c) rindex(str,c)
39 #else
40 char *strchr ANSI((char*, char));
41 char *strrchr ANSI((char*, char));
42 #endif
43 #endif