1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/* utils.h
*
*/
/*
fics - An internet chess server.
Copyright (C) 1993 Richard V. Nash
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.
*/
/* Revision history:
name email yy/mm/dd Change
Richard Nash 93/10/22 Created
Markus Uhlin 23/12/10 Renamed strdup() to xstrdup()
Markus Uhlin 23/12/10 Deleted check_emailaddr()
Markus Uhlin 23/12/17 Added argument lists
*/
#ifndef _UTILS_H
#define _UTILS_H
#include <stdio.h>
#include "multicol.h"
#define MAX_WORD_SIZE 1024
/* Maximum length of an output line */
#define MAX_LINE_SIZE 1024
/* Maximum size of a filename */
#ifdef FILENAME_MAX
# define MAX_FILENAME_SIZE FILENAME_MAX
#else
# define MAX_FILENAME_SIZE 1024
#endif
#define SetFlag(VAR, FLAG) (VAR |= (FLAG))
#define ClearFlag(VAR, FLAG) (VAR &= ~(FLAG))
#define CheckFlag(VAR, FLAG) (VAR & (FLAG))
extern int count_lines(FILE *);
extern int iswhitespace( );
extern char *getword( );
/* Returns a pointer to the first whitespace in the argument */
extern char *eatword( );
/* Returns a pointer to the first non-whitespace char in the argument */
extern char *eatwhite( );
/* Returns a pointer to the same string with trailing spaces removed */
extern char *eattailwhite( );
/* Returns the next word in a given string >eatwhite(eatword(foo))< */
extern char *nextword( );
extern int mail_string_to_address();
extern int mail_string_to_user();
extern int mail_file_to_address(char *, char *, char *);
extern int mail_file_to_user();
extern int pcommand(int, char *, ...);
extern int pprintf(int, char *, ...);
extern void pprintf_dohightlight(int);
extern void sprintf_dohightlight(int,char *);
extern int pprintf_highlight(int, char *, ...);
extern int psprintf_highlight(int, char *, char *, ...);
extern int pprintf_prompt(int, char *, ...);
extern int pprintf_noformat(int, char *, ...);
extern int psend_raw_file( );
extern int psend_file( );
extern int psend_logoutfile( );
extern int pmore_file( );
extern int pmail_file( );
extern int psend_command( );
extern char *fix_time(char *);
extern char *stolower( );
extern int safechar( );
extern int safestring( );
extern int alphastring( );
extern int printablestring( );
extern char *xstrdup(const char *);
extern char *hms_desc();
extern char *hms();
extern char *strltime(time_t *);
extern char *strgtime(time_t *);
extern unsigned tenth_secs();
extern char *tenth_str();
extern int untenths();
extern int truncate_file();
extern int lines_file();
extern int file_has_pname();
extern char *file_wplayer();
extern char *file_bplayer();
extern char *dotQuad();
extern int available_space();
extern int file_exists();
extern char *ratstr();
extern char *ratstrii();
extern int search_directory(char *, char *, char **, int);
extern int display_directory(int, char **, int);
#endif /* _UTILS_H */
|