]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/string.h
Change the end copyright for Easy Software Products files to 2003.
[thirdparty/cups.git] / cups / string.h
CommitLineData
3b960317 1/*
997fbfa7 2 * "$Id: string.h,v 1.15 2002/12/17 18:56:43 swdev Exp $"
3b960317 3 *
4 * String definitions for the Common UNIX Printing System (CUPS).
5 *
997fbfa7 6 * Copyright 1997-2003 by Easy Software Products.
3b960317 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
8784b6a6 17 * 44141 Airport View Drive, Suite 204
3b960317 18 * Hollywood, Maryland 20636-3111 USA
19 *
20 * Voice: (301) 373-9603
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
34410ef2 23 *
24 * This file is subject to the Apple OS-Developed Software exception.
3b960317 25 */
26
27#ifndef _CUPS_STRING_H_
28# define _CUPS_STRING_H_
29
30/*
31 * Include necessary headers...
32 */
33
3620d932 34# include <config.h>
35
3095105a 36# include <stdio.h>
37# include <stdarg.h>
3620d932 38# include <ctype.h>
f5cca6ca 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 */
3b960317 47
e3286452 48# ifdef HAVE_BSTRING_H
49# include <bstring.h>
50# endif /* HAVE_BSTRING_H */
51
3b960317 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
5d14f780 63/*
64 * C++ magic...
65 */
66
67# ifdef __cplusplus
68extern "C" {
69# endif /* __cplusplus */
70
71
3b960317 72/*
73 * Prototypes...
74 */
75
76# ifndef HAVE_STRDUP
17438bf4 77extern char *cups_strdup(const char *);
78# define strdup cups_strdup
3b960317 79# endif /* !HAVE_STRDUP */
80
81# ifndef HAVE_STRCASECMP
17438bf4 82extern int cups_strcasecmp(const char *, const char *);
83# define strcasecmp cups_strcasecmp
3b960317 84# endif /* !HAVE_STRCASECMP */
85
86# ifndef HAVE_STRNCASECMP
17438bf4 87extern int cups_strncasecmp(const char *, const char *, size_t n);
88# define strncasecmp cups_strncasecmp
3b960317 89# endif /* !HAVE_STRNCASECMP */
90
17438bf4 91# ifndef HAVE_STRLCAT
92extern size_t cups_strlcat(char *, const char *, size_t);
93# define strlcat cups_strlcat
94# endif /* !HAVE_STRLCAT */
95
96# ifndef HAVE_STRLCPY
97extern size_t cups_strlcpy(char *, const char *, size_t);
98# define strlcpy cups_strlcpy
99# endif /* !HAVE_STRLCPY */
100
3095105a 101# ifndef HAVE_SNPRINTF
17438bf4 102extern int cups_snprintf(char *, size_t, const char *, ...)
1a90a168 103# ifdef __GNUC__
104__attribute__ ((__format__ (__printf__, 3, 4)))
105# endif /* __GNUC__ */
106;
17438bf4 107# define snprintf cups_snprintf
3095105a 108# endif /* !HAVE_SNPRINTF */
109
110# ifndef HAVE_VSNPRINTF
17438bf4 111extern int cups_vsnprintf(char *, size_t, const char *, va_list);
112# define vsnprintf cups_vsnprintf
3095105a 113# endif /* !HAVE_VSNPRINTF */
114
5d14f780 115
116/*
117 * C++ magic...
118 */
119
120# ifdef __cplusplus
121}
122# endif /* __cplusplus */
123
3b960317 124#endif /* !_CUPS_STRING_H_ */
125
126/*
997fbfa7 127 * End of "$Id: string.h,v 1.15 2002/12/17 18:56:43 swdev Exp $".
3b960317 128 */