]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/string.h
Change the end copyright for Easy Software Products files to 2003.
[thirdparty/cups.git] / cups / string.h
1 /*
2 * "$Id: string.h,v 1.15 2002/12/17 18:56:43 swdev Exp $"
3 *
4 * String definitions for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 1997-2003 by Easy Software Products.
7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Easy Software Products and are protected by Federal
10 * copyright law. Distribution and use rights are outlined in the file
11 * "LICENSE.txt" which should have been included with this file. If this
12 * file is missing or damaged please contact Easy Software Products
13 * at:
14 *
15 * Attn: CUPS Licensing Information
16 * Easy Software Products
17 * 44141 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636-3111 USA
19 *
20 * Voice: (301) 373-9603
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 *
24 * This file is subject to the Apple OS-Developed Software exception.
25 */
26
27 #ifndef _CUPS_STRING_H_
28 # define _CUPS_STRING_H_
29
30 /*
31 * Include necessary headers...
32 */
33
34 # include <config.h>
35
36 # include <stdio.h>
37 # include <stdarg.h>
38 # include <ctype.h>
39
40 # ifdef HAVE_STRING_H
41 # include <string.h>
42 # endif /* HAVE_STRING_H */
43
44 # ifdef HAVE_STRINGS_H
45 # include <strings.h>
46 # endif /* HAVE_STRINGS_H */
47
48 # ifdef HAVE_BSTRING_H
49 # include <bstring.h>
50 # endif /* HAVE_BSTRING_H */
51
52
53 /*
54 * Stuff for WIN32 and OS/2...
55 */
56
57 # if defined(WIN32) || defined(__EMX__)
58 # define strcasecmp stricmp
59 # define strncasecmp strnicmp
60 # endif /* WIN32 || __EMX__ */
61
62
63 /*
64 * C++ magic...
65 */
66
67 # ifdef __cplusplus
68 extern "C" {
69 # endif /* __cplusplus */
70
71
72 /*
73 * Prototypes...
74 */
75
76 # ifndef HAVE_STRDUP
77 extern char *cups_strdup(const char *);
78 # define strdup cups_strdup
79 # endif /* !HAVE_STRDUP */
80
81 # ifndef HAVE_STRCASECMP
82 extern int cups_strcasecmp(const char *, const char *);
83 # define strcasecmp cups_strcasecmp
84 # endif /* !HAVE_STRCASECMP */
85
86 # ifndef HAVE_STRNCASECMP
87 extern int cups_strncasecmp(const char *, const char *, size_t n);
88 # define strncasecmp cups_strncasecmp
89 # endif /* !HAVE_STRNCASECMP */
90
91 # ifndef HAVE_STRLCAT
92 extern size_t cups_strlcat(char *, const char *, size_t);
93 # define strlcat cups_strlcat
94 # endif /* !HAVE_STRLCAT */
95
96 # ifndef HAVE_STRLCPY
97 extern size_t cups_strlcpy(char *, const char *, size_t);
98 # define strlcpy cups_strlcpy
99 # endif /* !HAVE_STRLCPY */
100
101 # ifndef HAVE_SNPRINTF
102 extern int cups_snprintf(char *, size_t, const char *, ...)
103 # ifdef __GNUC__
104 __attribute__ ((__format__ (__printf__, 3, 4)))
105 # endif /* __GNUC__ */
106 ;
107 # define snprintf cups_snprintf
108 # endif /* !HAVE_SNPRINTF */
109
110 # ifndef HAVE_VSNPRINTF
111 extern int cups_vsnprintf(char *, size_t, const char *, va_list);
112 # define vsnprintf cups_vsnprintf
113 # endif /* !HAVE_VSNPRINTF */
114
115
116 /*
117 * C++ magic...
118 */
119
120 # ifdef __cplusplus
121 }
122 # endif /* __cplusplus */
123
124 #endif /* !_CUPS_STRING_H_ */
125
126 /*
127 * End of "$Id: string.h,v 1.15 2002/12/17 18:56:43 swdev Exp $".
128 */