diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-21 06:44:29 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-21 06:44:29 +0200 |
commit | 187351fa61e0ec9e8fe396de7a1d72a3a67d328f (patch) | |
tree | 46c15ce40d623ab8398073fe15c7af74eeb49f93 /plugins/sysinfo/match.h | |
parent | cb891a9732d77dde425052b6d11dc8024492e80a (diff) |
Add vanilla X-Sys sources
Diffstat (limited to 'plugins/sysinfo/match.h')
-rw-r--r-- | plugins/sysinfo/match.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/sysinfo/match.h b/plugins/sysinfo/match.h new file mode 100644 index 00000000..b8846527 --- /dev/null +++ b/plugins/sysinfo/match.h @@ -0,0 +1,35 @@ +/* + * match.h - matching header for X-Sys + * Copyright (C) 2005 Tony Vroon + * + * 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 2 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef _MATCH_H_ +#define _MATCH_H_ + +void find_match_char(char *buffer, char *match, char *result); +void find_match_double(char *buffer, char *match, double *result); +void find_match_double_hex(char *buffer, char *match, double *result); +void find_match_int(char *buffer, char *match, unsigned int *result); +void find_match_ll(char *buffer, char *match, unsigned long long *result); +void format_output(const char *arg, char *string, char *format); +void flat_format_output(const char *arg, char *string, char *format); +float percentage(unsigned long long *free, unsigned long long *total); +char *pretty_freespace(const char *desc, unsigned long long *free_k, unsigned long long *total_k); +void remove_leading_whitespace(char *buffer); +char *decruft_filename(char *buffer); + +#endif |