/*-------------------------------------------------------------------------
string.h - ANSI functions forward declarations
Written By - Sandeep Dutta . sandeep.dutta@usa.net (1998)
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
In other words, you are welcome to use, share and improve this program.
You are forbidden to forbid anyone else to use, share and improve
what you give them. Help stamp out software-hoarding!
-------------------------------------------------------------------------*/
#ifndef __SDC51_STRING_H
#define __SDC51_STRING_H 1
#ifndef NULL
# define NULL (void *)0
#endif
#ifndef _SIZE_T_DEFINED
# define _SIZE_T_DEFINED
typedef unsigned int size_t;
#endif
extern char *strcpy (char *, char *) ;
extern char *strncpy(char *, char *, size_t ) ;
extern char *strcat (char *, char *) ;
extern char *strncat(char *, char *, size_t ) ;
extern int strcmp (char *, char *) ;
extern int strncmp(char *, char *, size_t ) ;
extern char *strchr (char *, char ) ;
extern char *strrchr(char *, char ) ;
extern int strspn (char *, char *) ;
extern int strcspn(char *, char *) ;
extern char *strpbrk(char *, char *) ;
extern char *strstr (char *, char *) ;
extern int strlen (char * ) ;
extern char *strtok (char *, char *) ;
extern void *memcpy (void *, void *, size_t ) ;
extern int memcmp (void *, void *, size_t ) ;
extern void *memset (void *, unsigned char , size_t ) ;
extern void *memmove (void *, void *, size_t ) ;
#ifdef SDCC_ds390
extern void __xdata * memcpyx(void __xdata *, void __xdata *, int) __naked;
#endif
#ifdef SDCC_z80
#define memcpy(dst, src, n) __builtin_memcpy(dst, src, n)
#endif
#endif