/*------------------------------------------------------------------------ * filename - _string.h * * Definitions for memory and string functions. *-----------------------------------------------------------------------*/ /* * C/C++ Run Time Library - Version 1.5 * * Copyright (c) 1992, 1994 by Borland International * All Rights Reserved. * */ #ifndef __STRING_H #include #endif #if !defined(___DEFS_H) #include <_defs.h> #endif #ifndef NULL #include <_null.h> #endif #ifndef _SIZE_T #define _SIZE_T typedef unsigned size_t; #endif #ifdef __cplusplus extern "C" { #endif char _FAR * _RTLENTRY _EXPFUNC cstrlwr(char _FAR *__s); char _FAR * _RTLENTRY _EXPFUNC cstrupr(char _FAR *__s); int _Cdecl _RTLENTRY _EXPFUNC _strcoll(const char _FAR *__s1, const char _FAR *__s2); size_t _Cdecl _RTLENTRY _EXPFUNC _strxfrm(char _FAR *__s1, const char _FAR *__s2, size_t __n ); #ifdef __cplusplus } #endif