- Timestamp:
- Jan 4, 2005, 6:00:50 PM (16 years ago)
- Location:
- pwntcha/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/phpbb.c
r408 r411 13 13 #include <stdlib.h> 14 14 #include <string.h> 15 #include <limits.h> 15 16 16 17 #include "config.h" … … 63 64 { 64 65 /* Try to find 1st letter */ 65 distmin = 999999999;66 distmin = INT_MAX; 66 67 for(i = 0; i < 35; i++) 67 68 { 68 int localmin = 99999999,localx, localy;69 int localmin = INT_MAX localx, localy; 69 70 xmin = i * 40; 70 71 ymin = 0; -
pwntcha/trunk/src/slashdot.c
r408 r411 13 13 #include <stdlib.h> 14 14 #include <string.h> 15 #include <limits.h> 15 16 #include <math.h> 16 17 … … 324 325 { 325 326 /* Try to find 1st letter */ 326 distmin = 999999999;327 distmin = INT_MAX; 327 328 for(i = 0; i < 22; i++) 328 329 { 329 int localmin = 99999999, localx, localy;330 int localmin = INT_MAX, localx, localy; 330 331 //if(all[i] == 'i') continue; 331 332 xmin = glyphs[i].xmin; -
pwntcha/trunk/src/test.c
r400 r411 13 13 #include <stdlib.h> 14 14 #include <string.h> 15 #include <limits.h> 15 16 #include <math.h> 16 17 … … 90 91 { 91 92 /* Try to find 1st letter */ 92 distmin = 999999999;93 distmin = INT_MAX; 93 94 for(i = 0; i < 35; i++) 94 95 { 95 int localmin = 99999999, localx, localy;96 int localmin = INT_MAX, localx, localy; 96 97 xmin = i * 40; 97 98 ymin = 0;
Note: See TracChangeset
for help on using the changeset viewer.