1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
#ifndef __UTIL_H
#define __UTIL_H
char *replace_char(char *str, size_t n, char c1, char c2);
char * dev_file2string(const char* file, char *buffer, size_t *lbuffer);
char *file_getvalue(char *buffer, int lbuffer, const char* file, const char *key);
void sge_running_as_admin_user(bool *error, bool *isadmin);
bool file_exists(const char *file);
/* fixme: extend, in the absence of autoconf */
#define HAVE_STRSIGNAL (__linux__ || __sun || __sun__ || __NetBSD__ || \
__FreeBSD__ || __OpenBSD__ || __DragonFly__)
#if !HAVE_STRSIGNAL
char *strsignal(int sig);
#endif
bool copy_linewise(const char *src, const char *dst);
#endif
|