blob: ef50d2b2d30842baa98e88d7df54f29da1f8b101 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __UTIL_H
#define __UTIL_H
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdatomic.h>
int uniq_id();
char *alloc_new_str_s(char *str, size_t size);
char *alloc_new_str(char *str);
#endif
|