Doxygen Source Code Documentation
config.h File Reference
#include <sys/types.h>#include <stddef.h>Go to the source code of this file.
Defines | |
| #define | PACKAGE "gifsicle" |
| #define | VERSION "1.25" |
| #define | RANDOM random |
| #define | GETTIMEOFDAY_PROTO 2 |
| #define | NEED_SYS_TYPES_H 1 |
| #define | PATHNAME_SEPARATOR '/' |
| #define | HAVE_STRERROR 1 |
| #define | HAVE_STRTOUL 1 |
| #define | HAVE_SYS_SELECT_H 1 |
| #define | PACKAGE "gifsicle" |
| #define | VERSION "1.25" |
| #define | xmalloc(s) fail_die_malloc((s),__FILE__,__LINE__) |
| #define | xrealloc(p, s) fail_die_realloc((p),(s),__FILE__,__LINE__) |
| #define | xfree free |
Functions | |
| void * | fail_die_malloc (size_t, const char *, int) |
| void * | fail_die_realloc (void *, size_t, const char *, int) |
Define Documentation
|
|
Definition at line 18 of file gifsicledir/config.h. |
|
|
Definition at line 49 of file gifsicledir/config.h. |
|
|
Definition at line 52 of file gifsicledir/config.h. |
|
|
Definition at line 55 of file gifsicledir/config.h. |
|
|
Definition at line 21 of file gifsicledir/config.h. |
|
|
Definition at line 58 of file gifsicledir/config.h. |
|
|
Definition at line 58 of file gifsicledir/config.h. |
|
|
Definition at line 30 of file gifsicledir/config.h. |
|
|
Definition at line 15 of file gifsicledir/config.h. Referenced by colormap_image_floyd_steinberg(). |
|
|
Definition at line 61 of file gifsicledir/config.h. |
|
|
Definition at line 61 of file gifsicledir/config.h. |
|
|
Definition at line 78 of file gifsicledir/config.h. |
|
|
Definition at line 76 of file gifsicledir/config.h. |
|
|
Definition at line 77 of file gifsicledir/config.h. |
Function Documentation
|
||||||||||||||||
|
Definition at line 20 of file fmalloc.c.
|
|
||||||||||||||||||||
|
Definition at line 29 of file fmalloc.c.
00030 {
00031 if (!p)
00032 return fail_die_malloc(size, file, line);
00033 p = realloc(p, size);
00034 if (!p && size)
00035 fail_die_malloc_die(size, file, line);
00036 return p;
00037 }
|