You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
180 B
8 lines
180 B
#ifndef __UTILS_H__
|
|
#define __UTILS_H__
|
|
|
|
int execlog (char *);
|
|
int check_dir (char *);
|
|
int snprintfcat (char *str, size_t size, const char *format, ...);
|
|
|
|
#endif /* __UTILS_H__ */
|
|
|