-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcommon.c
56 lines (47 loc) · 819 Bytes
/
common.c
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
#include "common.h"
void
error(const char * msg)
{
perror(msg);
exit(EXIT_FAILURE);
}
FILE *
ck_fopen(const char * path, const char * mode)
{
FILE * file = fopen(path, mode);
if (file == NULL)
error("fopen");
return file;
}
void *
ck_malloc(size_t size)
{
void * ptr = malloc(size);
if (ptr == NULL)
error("malloc");
return ptr;
}
void
chomp(char * str)
{
while (*str) {
if (*str == '\n' || *str == '\r') {
*str = 0;
return;
}
str++;
}
}
void
gen_randstr(char * str_rand, const int len)
{
int i;
static const char alphanum[] =
"0123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz";
for (i = 0; i < len; i++) {
str_rand[i] = alphanum[rand() % (sizeof(alphanum) - 1)];
}
str_rand[len] = 0;
}