Ignore:
Timestamp:
01/10/05 14:21:50 (8 years ago)
Author:
sam
Message:
  • src/common.h: new font structure.
  • src/slashdot.c: use new font structure, removed FACTOR.
  • extras/makefont.c: we add spaces in the string ourselves.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pwntcha/trunk/src/common.h

    r445 r446  
    1818}; 
    1919 
     20/* font structure */ 
     21struct font 
     22{ 
     23    struct image *img; 
     24    struct glyph 
     25    { 
     26        int xmin, xmax, ymin, ymax; 
     27        int count; /* Black pixel count */ 
     28    } *glyphs; 
     29}; 
     30 
    2031/* global variables */ 
    2132extern char *argv0; 
     
    3344char *decode_slashdot(struct image *img); 
    3445char *decode_vbulletin(struct image *img); 
     46char *decode_xanga(struct image *img); 
    3547char *decode_test(struct image *img); 
    3648 
Note: See TracChangeset for help on using the changeset viewer.