~ubuntu-branches/ubuntu/raring/gnupg2/raring-proposed

« back to all changes in this revision

Viewing changes to jnlib/stringhelp.h

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2009-09-07 20:38:23 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090907203823-d7hsk7lnfqoc4yom
Tags: 2.0.13-1
* New upstream release.
* debian/control: Depend instead of Recommend gnupg-agent. (Closes:
  #538947)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* stringhelp.h
2
2
 * Copyright (C) 1998, 1999, 2000, 2001, 2003,
3
 
 *               2006, 2007  Free Software Foundation, Inc.
 
3
 *               2006, 2007, 2009  Free Software Foundation, Inc.
4
4
 *
5
5
 * This file is part of JNLIB.
6
6
 *
37
37
 
38
38
char *make_basename(const char *filepath, const char *inputpath);
39
39
char *make_dirname(const char *filepath);
40
 
char *make_filename( const char *first_part, ... );
41
 
char *make_filename_try (const char *first_part, ... );
 
40
char *make_filename( const char *first_part, ... ) GNUPG_GCC_A_SENTINEL(0);
 
41
char *make_filename_try (const char *first_part, ... ) GNUPG_GCC_A_SENTINEL(0);
42
42
int compare_filenames( const char *a, const char *b );
43
43
 
44
44
int hextobyte (const char *s);
124
124
char *try_percent_escape (const char *str, const char *extra);
125
125
 
126
126
 
 
127
/* Concatenate the string S1 with all the following strings up to a
 
128
   NULL.  Returns a malloced buffer with the new string or NULL on a
 
129
   malloc error or if too many arguments are given.  */
 
130
char *strconcat (const char *s1, ...) GNUPG_GCC_A_SENTINEL(0);
 
131
/* Ditto, but die on error.  */
 
132
char *xstrconcat (const char *s1, ...) GNUPG_GCC_A_SENTINEL(0);
 
133
 
 
134
 
 
135
 
127
136
#endif /*LIBJNLIB_STRINGHELP_H*/