]> git.imager.perl.org - imager.git/blob - imio.h
minor error handling in bmp.c
[imager.git] / imio.h
1 #ifndef _IO_H_
2 #define _IO_H_
3 #include <stdio.h>
4 #include <sys/stat.h>
5 #ifndef _MSC_VER
6 #include <unistd.h>
7 #include <sys/mman.h>
8 #endif
9
10 #include "log.h"
11
12
13 /* #define MALLOC_DEBUG */
14
15 #ifdef IMAGER_DEBUG_MALLOC
16
17 #define mymalloc(x) (mymalloc_file_line((x), __FILE__, __LINE__))
18 #define myfree(x) (myfree_file_line((x), __FILE__, __LINE__))
19
20 void  malloc_state();
21 void* mymalloc_file_line(int size,char* file,int line);
22 void* mymalloc_comm(int size,char *comm);
23
24 void  myfree_file_line(void *p, char*file, int line);
25
26 void  bndcheck_all(void);
27
28 #else
29
30 #define malloc_comm(a,b) (mymalloc(a))
31 void malloc_state(void);
32 void* mymalloc(int size);
33 void myfree(void *p);
34 void *myrealloc(void *p, size_t newsize);
35
36 #endif /* IMAGER_MALLOC_DEBUG */
37
38
39 #ifdef _MSC_VER
40 #undef min
41 #undef max
42 #endif
43 int min(int a,int b);
44 int max(int x,int y);
45 int myread(int fd,void *buf,int len);
46 int mywrite(int fd,void *buf,int len);
47 void interleave(unsigned char *inbuffer,unsigned char *outbuffer,int rowsize,int channels);
48
49 #endif