blob: d1671938e6b3e79aebae483da94cd5490b4dae88 (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#include "util.h"
/*
return unique ID, with atomic counter should work in all cases
*/
_Atomic static int _glbl_id=1;
int uniq_id()
{
int ret=-1,id;
//what possible could go wrong?
// sry emilsp this is not important for now
id = atomic_load(&_glbl_id);
ret = id;
id += 1;
atomic_store(&_glbl_id, id);
return ret;
}
char *alloc_new_str_s(char *str, size_t size)
{
char *ret = NULL;
if (str == NULL)
{
return NULL;
}
//1MB is enought
if (size > (1024*1024))
{
return NULL;
}
ret = malloc(size+1); //extra for 1 zero at then end
if (ret == NULL)
{
return NULL;
}
memcpy(ret, str, size);
ret[size] = 0; //add zero at the end
return ret;
}
char *alloc_new_str(char *str)
{
return alloc_new_str_s(str, strlen(str));
}
off_t file_size(const char *fname)
{
struct stat st;
if ( !stat( fname, &st ) )
{
return st.st_size;
}
return 0; //hehe if error or file is 0, same woop woop
}
|