Ignore:
Timestamp:
Jan 3, 2005, 4:29:46 PM (18 years ago)
Author:
Sam Hocevar
Message:
  • renamed a few functions
File:
1 edited

Legend:

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

    r385 r387  
    1919
    2020/* available CAPTCHA decoders */
    21 char * slashdot_decode(char *image);
     21char * decode_slashdot(struct image *img);
    2222
    2323/* image operations */
    24 struct image * load_image(char *name);
    25 struct image * new_image(int width, int height);
     24struct image * image_load(char *name);
     25struct image * image_new(int width, int height);
    2626int getgray(struct image *img, int x, int y, int *g);
    2727int getpixel(struct image *img, int x, int y, int *r, int *g, int *b);
     
    2929
    3030/* image filters */
    31 void flood_fill(struct image *img, int x, int y, int r, int g, int b);
    32 struct image *fill_holes(struct image *img);
    33 struct image *detect_lines(struct image *img);
    34 struct image *equalize(struct image *img);
    35 struct image *trick(struct image *img);
    36 struct image *smooth(struct image *img);
    37 struct image *median(struct image *img);
     31void filter_flood_fill(struct image *img, int x, int y, int r, int g, int b);
     32struct image *filter_fill_holes(struct image *img);
     33struct image *filter_detect_lines(struct image *img);
     34struct image *filter_equalize(struct image *img);
     35struct image *filter_trick(struct image *img);
     36struct image *filter_smooth(struct image *img);
     37struct image *filter_median(struct image *img);
    3838
Note: See TracChangeset for help on using the changeset viewer.