File: pslib-mp.h

package info (click to toggle)
pslib 0.4.8-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,808 kB
  • sloc: ansic: 9,602; sh: 4,382; makefile: 246
file content (29 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef __PSLIB_MP_H__
#define __PSLIB_MP_H__

#include <libps/pslib.h>

#ifdef __cplusplus
extern "C" {
#endif

PSLIB_API void PSLIB_CALL
PS_mp_init(void);

PSLIB_API void * PSLIB_CALL
PS_mp_malloc(PSDoc *p, size_t size, const char *caller);

PSLIB_API void * PSLIB_CALL
PS_mp_realloc(PSDoc *p, void *mem, size_t size, const char *caller);

PSLIB_API void PSLIB_CALL
PS_mp_free(PSDoc *p, void *mem);

PSLIB_API void PSLIB_CALL
PS_mp_list_unfreed();

#ifdef __cplusplus
}
#endif

#endif