2022-07-28 15:15:04 +00:00
|
|
|
/*
|
2022-12-26 15:52:52 +00:00
|
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
2022-07-28 15:15:04 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation files
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
2022-07-28 16:00:52 +00:00
|
|
|
* included in all copies or portions of the Software.
|
2022-07-28 15:15:04 +00:00
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
2022-07-29 19:36:21 +00:00
|
|
|
|
2022-07-27 17:47:20 +00:00
|
|
|
#ifndef TELODENDRIA_UTIL_H
|
|
|
|
#define TELODENDRIA_UTIL_H
|
|
|
|
|
2022-10-31 23:52:37 +00:00
|
|
|
#include <stdio.h>
|
2022-10-24 17:40:21 +00:00
|
|
|
#include <stddef.h>
|
2022-10-31 23:52:37 +00:00
|
|
|
#include <sys/types.h>
|
2022-10-24 17:40:21 +00:00
|
|
|
|
|
|
|
extern unsigned long
|
2022-07-27 17:47:20 +00:00
|
|
|
UtilServerTs(void);
|
|
|
|
|
2022-11-15 18:20:05 +00:00
|
|
|
extern unsigned long
|
|
|
|
UtilLastModified(char *);
|
|
|
|
|
2022-11-17 22:57:29 +00:00
|
|
|
extern int
|
|
|
|
UtilMkdir(const char *, const mode_t);
|
|
|
|
|
2022-07-27 17:47:20 +00:00
|
|
|
extern char *
|
2022-07-29 19:36:21 +00:00
|
|
|
UtilUtf8Encode(unsigned long);
|
2022-07-27 17:47:20 +00:00
|
|
|
|
2022-08-10 00:05:41 +00:00
|
|
|
extern char *
|
|
|
|
UtilStringDuplicate(char *);
|
|
|
|
|
2022-11-15 18:20:05 +00:00
|
|
|
extern char *
|
2023-01-07 03:17:06 +00:00
|
|
|
UtilStringConcat(size_t,...);
|
2022-11-15 18:20:05 +00:00
|
|
|
|
2022-08-24 23:30:20 +00:00
|
|
|
extern int
|
|
|
|
UtilSleepMillis(long);
|
|
|
|
|
2022-10-24 17:40:21 +00:00
|
|
|
extern size_t
|
2022-11-25 21:54:57 +00:00
|
|
|
UtilParseBytes(char *);
|
2022-10-24 17:40:21 +00:00
|
|
|
|
2022-10-31 23:52:37 +00:00
|
|
|
extern ssize_t
|
2022-11-25 21:54:57 +00:00
|
|
|
UtilGetDelim(char **, size_t *, int, FILE *);
|
2022-10-31 23:52:37 +00:00
|
|
|
|
|
|
|
extern ssize_t
|
2022-11-25 21:54:57 +00:00
|
|
|
UtilGetLine(char **, size_t *, FILE *);
|
2022-10-31 23:52:37 +00:00
|
|
|
|
2022-12-15 03:41:59 +00:00
|
|
|
extern char *
|
|
|
|
UtilRandomString(size_t);
|
|
|
|
|
2022-07-29 19:36:21 +00:00
|
|
|
#endif /* TELODENDRIA_UTIL_H */
|