summaryrefslogtreecommitdiff
path: root/ext/gd/libgd/gdhelpers.h
blob: aefcc18b99540204391f0d7afb396f357bddddc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef GDHELPERS_H 
#define GDHELPERS_H 1

/* TBB: strtok_r is not universal; provide an implementation of it. */

extern char *gd_strtok_r(char *s, char *sep, char **state);

/* These functions wrap memory management. gdFree is
	in gd.h, where callers can utilize it to correctly
	free memory allocated by these functions with the
	right version of free(). */
void *gdCalloc(size_t nmemb, size_t size);
void *gdMalloc(size_t size);
void *gdRealloc(void *ptr, size_t size);

#endif /* GDHELPERS_H */