/* * * Singe 3 * Copyright (C) 2006-2026 Scott Duensing * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 3 * of the License, or (at your option) any later version. * * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. * */ #ifndef UTIL_H #define UTIL_H #include #include #include #include "common.h" #define UTIL_PATH_MAX 1024 bool utilChMod(const char *path, const mode_t mode); char *utilCreateString(const char *format, ...) __attribute__((format(printf, 1, 2))); char *utilCreateStringVArgs(const char *format, va_list args) __attribute__((format(printf, 1, 0))); void utilDie(const char *fmt, ...) __attribute__((format(printf, 1, 2))) __attribute__((noreturn)); void utilEnableConsole(bool enable); bool utilFileExists(const char *filename); void utilFixPathSeparators(char **path, bool slash); bool utilGetConsoleEnabled(void); char *utilGetFileExtension(const char *filename); char *utilGetLastPathComponent(const char *pathname); char utilGetPathSeparator(void); char *utilGetUpToLastPathComponent(const char *pathname); bool utilMkDirP(const char *dir, const mode_t mode); void utilNewline(void); bool utilPathExists(const char *pathname); char *utilReadFile(const char *filename, size_t *bytes); char *utilReadLine(const char *haystack, size_t length, const char **offset); void utilRedirectConsole(void); void utilSay(const char *fmt, ...) __attribute__((format(printf, 1, 2))); bool utilStartsWith(const char *string, const char *start); int32_t utilStricmp(const char *a, const char *b); char *utilStrndup(const char *s1, size_t n); void utilTrace(const char *fmt, ...) __attribute__((format(printf, 1, 2))); void utilTraceEnd(void); void utilTraceStart(const char *filename); void utilTraceVArgs(const char *fmt, va_list args) __attribute__((format(printf, 1, 0))); void utilWaitForKeyOnWindows(void); #endif // UTIL_H