Browse Source

Added macros for strcpy

mingodad 9 years ago
parent
commit
8870489ee4
1 changed files with 2 additions and 0 deletions
  1. 2 0
      SquiLu/include/sqconfig.h

+ 2 - 0
SquiLu/include/sqconfig.h

@@ -80,6 +80,7 @@ typedef unsigned wchar_t SQUChar;
 #define scfopen	wfopen
 #endif
 #define scstrlen    wcslen
+#define scstrcpy    wcstrcpy
 #define scstrtod    wcstod
 #ifdef _SQ64
 #define scstrtol    wcstoll
@@ -137,6 +138,7 @@ typedef unsigned char SQUChar;
 #define scfopen	fopen
 #endif
 #define scstrlen    strlen
+#define scstrcpy    strcpy
 #define scstrtod    strtod
 #ifdef _SQ64
 #ifdef _MSC_VER