1 /************************************************************************
2 qDecoder - Web Application Interface for C/C++ http://www.qDecoder.org
3
4 Copyright (C) 2001 The qDecoder Project.
5 Copyright (C) 1999,2000 Hongik Internet, Inc.
6 Copyright (C) 1998 Nobreak Technologies, Inc.
7 Copyright (C) 1996,1997 Seung-young Kim.
8
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Lesser General Public
11 License as published by the Free Software Foundation; either
12 version 2.1 of the License, or (at your option) any later version.
13
14 This library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public
20 License along with this library; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
23 Copyright Disclaimer:
24 Hongik Internet, Inc., hereby disclaims all copyright interest.
25 President, Christopher Roh, 6 April 2000
26
27 Nobreak Technologies, Inc., hereby disclaims all copyright interest.
28 President, Yoon Cho, 6 April 2000
29
30 Seung-young Kim, hereby disclaims all copyright interest.
31 Author, Seung-young Kim, 6 April 2000
32 ************************************************************************/
33
34 char _x2c(char hex_up, char hex_low);
35 char *_makeword(char *str, char stop);
36 char *_strtok2(char *str, char *token, char *retstop);
37 char *_fgets(char *str, int size, FILE *stream);
38 int _flockopen(FILE *fp);
39 int _flockclose(FILE *fp);
40
41 Q_Entry *_EntryAdd(Q_Entry *first, char *name, char *value);
42 Q_Entry *_EntryRemove(Q_Entry *first, char *name);
43 char *_EntryValue(Q_Entry *first, char *name);
44 int _EntryiValue(Q_Entry *first, char *name);
45 int _EntryNo(Q_Entry *first, char *name);
46 int _EntryPrint(Q_Entry *first);
47 void _EntryFree(Q_Entry *first);
48 int _EntrySave(Q_Entry *first, char *filename);
49 Q_Entry *_EntryLoad(char *filename);
50