~ubuntu-branches/ubuntu/hardy/nfs-utils/hardy-updates

« back to all changes in this revision

Viewing changes to utils/gssd/cacheio.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2007-11-14 04:52:46 UTC
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20071114045246-37yxn6na36segpuh
Tags: upstream-1.1.1
ImportĀ upstreamĀ versionĀ 1.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  Copyright (c) 2004 The Regents of the University of Michigan.
3
 
  All rights reserved.
4
 
 
5
 
  Redistribution and use in source and binary forms, with or without
6
 
  modification, are permitted provided that the following conditions
7
 
  are met:
8
 
 
9
 
  1. Redistributions of source code must retain the above copyright
10
 
     notice, this list of conditions and the following disclaimer.
11
 
  2. Redistributions in binary form must reproduce the above copyright
12
 
     notice, this list of conditions and the following disclaimer in the
13
 
     documentation and/or other materials provided with the distribution.
14
 
  3. Neither the name of the University nor the names of its
15
 
     contributors may be used to endorse or promote products derived
16
 
     from this software without specific prior written permission.
17
 
 
18
 
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
19
 
  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20
 
  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
 
  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22
 
  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23
 
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24
 
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25
 
  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26
 
  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27
 
  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28
 
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
 
*/
30
 
 
31
 
#ifndef _CACHEIO_H_
32
 
#define _CACHEIO_H_
33
 
 
34
 
#include <stdio.h>
35
 
 
36
 
void qword_add(char **bpp, int *lp, char *str);
37
 
void qword_addhex(char **bpp, int *lp, char *buf, int blen);
38
 
void qword_addint(char **bpp, int *lp, int n);
39
 
void qword_adduint(char **bpp, int *lp, unsigned int n);
40
 
void qword_addeol(char **bpp, int *lp);
41
 
void qword_print(FILE *f, char *str);
42
 
void qword_printhex(FILE *f, char *str, int slen);
43
 
void qword_printint(FILE *f, int num);
44
 
int qword_eol(FILE *f);
45
 
int readline(int fd, char **buf, int *lenp);
46
 
int qword_get(char **bpp, char *dest, int bufsize);
47
 
int qword_get_int(char **bpp, int *anint);
48
 
 
49
 
#endif /* _CACHEIO_H_ */