xbot/lib/util.h

15 lines
256 B
C
Raw Normal View History

2015-03-24 03:12:35 -07:00
/*
* xbot: Just another IRC bot
*
* Written by Aaron Blakely <aaron@ephasic.org>
**/
#ifndef UTIL_H
#define UTIL_H
void eprint(char *fmt, ...);
void strlcpy(char *to, const char *from, int len);
char *skip(char *s, char c);
void trim(char *s);
#endif