summaryrefslogtreecommitdiff
path: root/src/c_fl_pnm_image.h
blob: 6feeff9875d34b093cda89864b8daf9959942fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


//  Programmed by Jedidiah Barber
//  Released into the public domain


#ifndef FL_PNM_IMAGE_GUARD
#define FL_PNM_IMAGE_GUARD


typedef void* PNMIMAGE;


extern "C" PNMIMAGE new_fl_pnm_image(const char * f);
extern "C" void free_fl_pnm_image(PNMIMAGE p);


#endif