~ubuntu-branches/ubuntu/feisty/elinks/feisty-updates

« back to all changes in this revision

Viewing changes to src/util/string.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-06-30 08:57:43 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060630085743-l81fgbw9dehvl1ds
Tags: 0.11.1-1ubuntu1
* Merge to Debian unstable.
* Removed gnutls12 porting, this is upstream now.
* Only Ubuntu changes left:
  - Killed type-handling.
  - Add X-Ubuntu-Gettext-Domain to .desktop files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: string.h,v 1.90.2.1 2005/01/04 00:53:42 jonas Exp $ */
2
 
 
3
1
#ifndef EL__UTIL_STRING_H
4
2
#define EL__UTIL_STRING_H
5
3
 
159
157
                             const unsigned char *source);
160
158
struct string *add_char_to_string(struct string *string, unsigned char character);
161
159
struct string *add_string_to_string(struct string *to, struct string *from);
 
160
struct string *add_file_to_string(struct string *string, unsigned char *filename);
162
161
struct string *add_crlf_to_string(struct string *string);
163
162
 
164
163
/* Adds each C string to @string until a terminating NULL is met. */