11 lines
198 B
C
11 lines
198 B
C
|
#ifndef _JITTERBUG__UTIL_H
|
||
|
#define _JITTERBUG__UTIL_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <unistd.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
char *string_dup(const char *s);
|
||
|
|
||
|
#endif // _JITTERBUG__UTIL_H
|