~ubuntu-branches/ubuntu/intrepid/upstart/intrepid

« back to all changes in this revision

Viewing changes to nih/string.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant
  • Date: 2007-10-28 10:51:59 UTC
  • mfrom: (1.1.10 upstream) (16.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20071028105159-x9pypymnb3kigxo7
Tags: 0.3.9-1
* New upstream release:
  - many bug fixes.

* Update reference to "edgy" in README.Debian to "hardy".  LP: #140037.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
char **nih_str_split        (const void *parent, const char *str,
44
44
                             const char *delim, int repeat)
45
45
        __attribute__ ((warn_unused_result, malloc));
 
46
 
46
47
char **nih_str_array_new    (const void *parent)
47
48
        __attribute__ ((warn_unused_result, malloc));
48
49
char **nih_str_array_add    (char ***array, const void *parent, size_t *len,
54
55
char **nih_str_array_addp   (char ***array, const void *parent, size_t *len,
55
56
                             void *ptr)
56
57
        __attribute__ ((warn_unused_result, malloc));
 
58
char **nih_str_array_copy   (const void *parent, size_t *len,
 
59
                             char * const *array)
 
60
        __attribute__ ((warn_unused_result, malloc));
 
61
char **nih_str_array_append (char ***array, const void *parent, size_t *len,
 
62
                             char * const *args)
 
63
        __attribute__ ((warn_unused_result, malloc));
 
64
 
57
65
void   nih_strv_free        (char **strv);
58
66
 
59
67
char * nih_str_wrap         (const void *parent, const char *str, size_t len,