~noskcaj/ubuntu/saucy/xinetd/2.3.15

« back to all changes in this revision

Viewing changes to libs/src/str/strparse.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Seyrat
  • Date: 2004-04-18 13:33:57 UTC
  • Revision ID: james.westby@ubuntu.com-20040418133357-czeqeju37433xvdd
Tags: upstream-2.3.13
ImportĀ upstreamĀ versionĀ 2.3.13

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (c) Copyright 1992, 1993 by Panagiotis Tsirigotis
 
3
 * All rights reserved.  The file named COPYRIGHT specifies the terms 
 
4
 * and conditions for redistribution.
 
5
 */
 
6
 
 
7
#ifndef __STRPARSE_H
 
8
#define __STRPARSE_H
 
9
 
 
10
/*
 
11
 * $Id: strparse.h,v 1.1.1.1 2003/02/19 17:29:27 bbraun Exp $
 
12
 */
 
13
 
 
14
struct str_handle
 
15
{
 
16
   char *string ;
 
17
   char *separator ;
 
18
   char *pos ;
 
19
   int flags ;
 
20
   int *errnop ;
 
21
   int no_more ;
 
22
} ;
 
23
 
 
24
 
 
25
#ifndef NULL
 
26
#define NULL         0
 
27
#endif
 
28
 
 
29
#ifndef FALSE
 
30
#define FALSE        0
 
31
#define TRUE         1
 
32
#endif
 
33
 
 
34
#endif /* __STRPARSE_H */
 
35