xbot/lib/util.h

39 lines
661 B
C
Raw Normal View History

2015-03-24 06:12:35 -04:00
/*
* xbot: Just another IRC bot
*
* Written by Aaron Blakely <aaron@ephasic.org>
**/
#ifndef UTIL_H
#define UTIL_H
2024-02-13 02:22:10 -05:00
#ifdef _WIN32
2024-02-16 16:28:11 -05:00
#define true TRUE
#define false FALSE
2024-02-13 02:22:10 -05:00
#endif
2024-03-06 04:45:01 -05:00
#ifdef _WIN32
#ifdef MY_DLL_EXPORTS
#define MY_API __declspec(dllexport)
#else
#define MY_API __declspec(dllimport)
#endif
#else
#define MY_API
#endif
2015-03-24 06:12:35 -04:00
void eprint(char *fmt, ...);
2024-02-13 02:22:10 -05:00
#if defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 38)) || defined(_WIN32)
2024-03-06 04:45:01 -05:00
MY_API void strlcpy(char *to, const char *from, int len);
2024-02-13 02:22:10 -05:00
#endif
2024-02-29 21:49:33 -05:00
#ifdef _WIN32
2024-03-06 04:45:01 -05:00
MY_API char *basename(char *path);
2024-02-29 21:49:33 -05:00
#endif
2024-03-06 04:45:01 -05:00
MY_API char *skip(char *s, char c);
MY_API void trim(char *s);
2015-03-24 06:12:35 -04:00
2024-02-13 02:22:10 -05:00
#endif