~ubuntu-branches/ubuntu/precise/gnupg2/precise-proposed

« back to all changes in this revision

Viewing changes to jnlib/stringhelp.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Mueller
  • Date: 2005-03-29 10:30:32 UTC
  • Revision ID: james.westby@ubuntu.com-20050329103032-sj42n2ain3ipx310
Tags: upstream-1.9.15
ImportĀ upstreamĀ versionĀ 1.9.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* stringhelp.h
 
2
 * Copyright (C) 1998,1999,2000,2001,2003 Free Software Foundation, Inc.
 
3
 *
 
4
 * This file is part of GnuPG.
 
5
 *
 
6
 * GnuPG is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * GnuPG is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
19
 */
 
20
 
 
21
#ifndef LIBJNLIB_STRINGHELP_H
 
22
#define LIBJNLIB_STRINGHELP_H
 
23
 
 
24
#include "types.h"
 
25
 
 
26
const char *memistr( const char *buf, size_t buflen, const char *sub );
 
27
char *mem2str( char *, const void *, size_t);
 
28
char *trim_spaces( char *string );
 
29
char *trim_trailing_spaces( char *string );
 
30
unsigned int trim_trailing_chars( unsigned char *line, unsigned len,
 
31
                                              const char *trimchars);
 
32
unsigned int trim_trailing_ws( unsigned char *line, unsigned len );
 
33
size_t length_sans_trailing_chars (const unsigned char *line, size_t len,
 
34
                                   const char *trimchars );
 
35
size_t length_sans_trailing_ws (const unsigned char *line, size_t len);
 
36
 
 
37
 
 
38
char *make_basename(const char *filepath);
 
39
char *make_dirname(const char *filepath);
 
40
char *make_filename( const char *first_part, ... );
 
41
int compare_filenames( const char *a, const char *b );
 
42
 
 
43
size_t print_sanitized_buffer (FILE *fp, const void *buffer, size_t length,
 
44
                               int delim);
 
45
size_t print_sanitized_utf8_buffer (FILE *fp, const void *buffer,
 
46
                                    size_t length, int delim);
 
47
size_t print_sanitized_string (FILE *fp, const char *string, int delim);
 
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);
 
50
 
 
51
 
 
52
#ifdef HAVE_W32_SYSTEM
 
53
const char *w32_strerror (int ec);
 
54
#endif
 
55
 
 
56
 
 
57
const char *ascii_memistr( const char *buf, size_t buflen, const char *sub );
 
58
int ascii_isupper (int c);
 
59
int ascii_islower (int c);
 
60
int ascii_toupper (int c);
 
61
int ascii_tolower (int c);
 
62
int ascii_strcasecmp( const char *a, const char *b );
 
63
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);
 
66
void *ascii_memcasemem (const void *haystack, size_t nhaystack,
 
67
                        const void *needle, size_t nneedle);
 
68
 
 
69
 
 
70
#ifndef HAVE_MEMICMP
 
71
int memicmp( const char *a, const char *b, size_t n );
 
72
#endif
 
73
#ifndef HAVE_STPCPY
 
74
char *stpcpy(char *a,const char *b);
 
75
#endif
 
76
#ifndef HAVE_STRLWR
 
77
char *strlwr(char *a);
 
78
#endif
 
79
#ifndef HAVE_STRTOUL
 
80
  #define strtoul(a,b,c)  ((unsigned long)strtol((a),(b),(c)))
 
81
#endif
 
82
#ifndef HAVE_MEMMOVE
 
83
  #define memmove(d, s, n) bcopy((s), (d), (n))
 
84
#endif
 
85
#ifndef HAVE_STRICMP
 
86
  #define stricmp(a,b)   strcasecmp( (a), (b) )
 
87
#endif
 
88
 
 
89
#ifndef STR
 
90
  #define STR(v) #v
 
91
#endif
 
92
#define STR2(v) STR(v)
 
93
 
 
94
 
 
95
#endif /*LIBJNLIB_STRINGHELP_H*/