mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:25:43 +01:00
12 lines
269 B
C
12 lines
269 B
C
|
#ifndef MEM_H_INCLUDED
|
||
|
#define MEM_H_INCLUDED
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
void *ccalloc(size_t n, size_t size);
|
||
|
void *crealloc(void *ptr, size_t new_size);
|
||
|
char *cstrdup(const char *s);
|
||
|
char *casprintf(const char *fmt, ...) __attribute__((__format__(printf, 1, 2)));
|
||
|
|
||
|
#endif
|