~ubuntu-branches/ubuntu/jaunty/gnupg2/jaunty-updates

« back to all changes in this revision

Viewing changes to jnlib/stringhelp.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2005-12-08 22:13:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051208221321-4rvs2vu835iam5wv
Tags: 1.9.19-2
* Convert debian/changelog to UTF-8.
* Put gnupg-agent and gpgsm lintian overrides in the respectively
  right package.  Closes: #335066
* Added debhelper tokens to maintainer scripts.
* xsession fixes:
  o Added host name to gpg-agent PID file name.  Closes: #312717
  o Fixed xsession script to be able to run under zsh.  Closes: #308516
  o Don't run gpg-agent if one is already running.  Closes: #336480
* debian/control:
  o Fixed package description of gpgsm package.  Closes: #299842
  o Added mention of gpg-agent to description of gnupg-agent package.
    Closes: #304355
* Thanks to Peter Eisentraut <petere@debian.org> for all of the above.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include "types.h"
25
25
 
26
 
const char *memistr( const char *buf, size_t buflen, const char *sub );
 
26
const char *memistr (const void *buf, size_t buflen, const char *sub);
27
27
char *mem2str( char *, const void *, size_t);
28
28
char *trim_spaces( char *string );
29
29
char *trim_trailing_spaces( char *string );
46
46
                                    size_t length, int delim);
47
47
size_t print_sanitized_string (FILE *fp, const char *string, int delim);
48
48
size_t print_sanitized_utf8_string (FILE *fp, const char *string, int delim);
49
 
char *sanitize_buffer (const unsigned char *p, size_t n, int delim);
 
49
char *sanitize_buffer (const void *p, size_t n, int delim);
50
50
 
51
51
 
52
52
#ifdef HAVE_W32_SYSTEM
54
54
#endif
55
55
 
56
56
 
57
 
const char *ascii_memistr( const char *buf, size_t buflen, const char *sub );
58
57
int ascii_isupper (int c);
59
58
int ascii_islower (int c);
60
59
int ascii_toupper (int c);
61
60
int ascii_tolower (int c);
62
61
int ascii_strcasecmp( const char *a, const char *b );
63
62
int ascii_strncasecmp (const char *a, const char *b, size_t n);
64
 
int ascii_memcasecmp( const char *a, const char *b, size_t n );
65
 
const char *ascii_memistr ( const char *buf, size_t buflen, const char *sub);
 
63
int ascii_memcasecmp( const void *a, const void *b, size_t n );
 
64
const char *ascii_memistr ( const void *buf, size_t buflen, const char *sub);
66
65
void *ascii_memcasemem (const void *haystack, size_t nhaystack,
67
66
                        const void *needle, size_t nneedle);
68
67