Changeset 2191
- Timestamp:
- Jan 12, 2008, 9:15:20 PM (15 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/cucul/figfont.c
r2144 r2191 307 307 if(!f) 308 308 { 309 snprintf(altpath, 2047, "%s.tlf", path);309 _snprintf(altpath, 2047, "%s.tlf", path); 310 310 altpath[2047] = '\0'; 311 311 f = _cucul_file_open(altpath, "r"); … … 313 313 if(!f) 314 314 { 315 snprintf(altpath, 2047, "%s.flf", path);315 _snprintf(altpath, 2047, "%s.flf", path); 316 316 altpath[2047] = '\0'; 317 317 f = _cucul_file_open(altpath, "r"); -
libcaca/trunk/cxx/caca++.cpp
r2074 r2191 18 18 * so on. 19 19 */ 20 21 #include "config.h" 20 22 21 23 #include <iostream> -
libcaca/trunk/msvc/config.h
r2144 r2191 57 57 #endif 58 58 #define strcasecmp stricmp 59 #define snprintf _snprintf
Note: See TracChangeset
for help on using the changeset viewer.