-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathshared.c
55 lines (46 loc) · 1.45 KB
/
shared.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
/*
* ifcfg-generator
*
* Copyright 2015 Lukas Nykryn <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdarg.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include "shvar.h"
#include "shared.h"
void log_internal(char *level, char *format, ...) {
va_list args;
va_start (args, format);
if(!strcmp(LOG_ERR, level) || !strcmp(LOG_WARNING, level))
fprintf(stderr, ANSI_COLOR_RED);
else if(!strcmp(LOG_INFO, level))
fprintf(stderr, ANSI_COLOR_YELLOW);
fprintf(stderr, "%s: ", level);
vfprintf(stderr, format, args);
va_end(args);
fprintf(stderr, ANSI_COLOR_RESET "\n");
}
int log_oom() {
log(LOG_ERR, "Can't allocate memory");
return -ENOMEM;
}
void hastable_free(gpointer data) {
free(data);
}
void hastable_close_file(gpointer data) {
svCloseFile(data);
}