LLIPS  rev33
Light Library for Image ProcesS
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
llips_io.h
Go to the documentation of this file.
1 /********************************************/
7 #ifndef __LLIPS_IO_H
8 #define __LLIPS_IO_H
9 /* ***************************************************************/
10 /* * Define */
11 /* ***************************************************************/
12 
13 /* ***************************************************************/
14 /* * Prototypes */
15 /* ***************************************************************/
16 CPU_VOID init_img(t_img * img);
17 CPU_CHAR load_img(CPU_CHAR * imgname, t_img * img);
18 CPU_CHAR write_img(CPU_CHAR * imgname, t_img * img);
19 CPU_CHAR copy_img( t_img * imgsrc, t_img * imgdest);
20 
21 
22 #endif
CPU_VOID init_img(t_img *img)
Initialize and allocate memory for a potentional load_img()
Definition: llips_io.c:29
void CPU_VOID
Definition: llips_type.h:20
CPU_CHAR write_img(CPU_CHAR *imgname, t_img *img)
Write an image buffer into a BMP file.
Definition: llips_io.c:155
unsigned char CPU_CHAR
Definition: llips_type.h:21
CPU_CHAR copy_img(t_img *imgsrc, t_img *imgdest)
Copy source image into destination image.
Definition: llips_io.c:206
CPU_CHAR load_img(CPU_CHAR *imgname, t_img *img)
Load a bmp file into an organized memory area.
Definition: llips_io.c:49