/* _string.h Definitions for memory and string functions. */ /* * C/C++ Run Time Library - Version 6.5 * * Copyright (c) 1987, 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 * _CType _FARFUNC cstrlwr(char _FAR *__s); char _FAR * _CType _FARFUNC cstrupr(char _FAR *__s); int _CType _FARFUNC _strcoll(const char _FAR *__s1, const char _FAR *__s2); size_t _CType _FARFUNC _strxfrm(char _FAR *__s1, const char _FAR *__s2, size_t __n ); #ifdef __cplusplus } #endif