Files
yait/src/util.h
2025-08-22 20:51:25 -04:00

18 lines
359 B
C

#ifndef UTIL_H
#define UTIL_H
#include "../include/yait.h"
licence_t TOlicence(char *s);
style_t TOstyle(char *s);
int getopt_long(int argc, char *const argv[], const char *optstring,
const struct option *longopts, int *longindex);
char *str_dup(char *s);
int mkdir_p(const char *path);
int cfprintf(const char *path, const char *format, ...);
#endif