File: str.h

package info (click to toggle)
spell 1.0-20
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 352 kB
  • ctags: 110
  • sloc: sh: 3,481; ansic: 1,306; makefile: 147
file content (51 lines) | stat: -rw-r--r-- 1,585 bytes parent folder | download | duplicates (8)
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
/* str.h -- header for str.c.

   Copyright (C) 1996 Free Software Foundation, Inc.
   Written by Thomas Morgan <tmorgan@pobox.com>

   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, 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., 675 Mass Ave, Cambridge, MA 02139, USA.

   Written by Thomas Morgan <tmorgan@pobox.com>.  */

#include <stdio.h>
#include <stdlib.h>

/* Always add at least this many bytes when extending the buffer.  */
#define CHUNK 64

/* Return values for `str_add_line*'.  */
enum add_line_return
  {
    ADD_LINE_OK,
    ADD_LINE_ERR,
    ADD_LINE_EOF
  };

struct str
  {
    char *str;			/* The array of characters.  */
    int len;			/* The number of characters.  */
    size_t mem;			/* The amount of memory allocated.  */
  };
typedef struct str str_t;

char *str_to_nstr (str_t * str);
int str_add_line (str_t *, FILE *);
int str_add_line_from_desc (str_t *, int);
str_t *int_to_str (int);
str_t *nstr_to_str (char *);
str_t *str_make (str_t *);
void str_add_char (str_t *, char);
void str_add_str (str_t *, str_t *);