Changeset 387 for pwntcha/trunk/src/image.c
- Timestamp:
- Jan 3, 2005, 4:29:46 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/image.c
r383 r387 25 25 #endif 26 26 27 struct image * load_image(char *name)27 struct image * image_load(char *name) 28 28 { 29 29 struct image * img; … … 57 57 } 58 58 59 struct image * new_image(int width, int height)59 struct image * image_new(int width, int height) 60 60 { 61 61 struct image * img; … … 131 131 } 132 132 133 void display_image(struct image *img)133 void image_display(struct image *img) 134 134 { 135 135 #if defined(HAVE_IMLIB2_H)
Note: See TracChangeset
for help on using the changeset viewer.