This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/Borland/BCC55/Include/string.h

12 lines
277 B
C

/* String.h - stub redirector for either _str.h or string.stl
*/
#if !defined(__cplusplus)
# include <_str.h>
#else /* __cplusplus */
# include <_str.h>
# if defined(__USING_STD_NAMES__)
# include <string.stl>
# endif /* __USING_STD_NAMES__ */
#endif /* __cplusplus */