1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
/*
* "$Id: string.h 343 2007-07-13 19:52:48Z mike $"
*
* String definitions for the Common UNIX Printing System (CUPS).
*
* Copyright 2007 by Apple Inc.
* Copyright 1997-2005 by Easy Software Products.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
* law. Distribution and use rights are outlined in the file "LICENSE.txt"
* which should have been included with this file. If this file is
* file is missing or damaged, see the license at "http://www.cups.org/".
*
* This file is subject to the Apple OS-Developed Software exception.
*/
#ifndef _CUPS_STRING_H_
# define _CUPS_STRING_H_
/*
* Include necessary headers...
*/
# include <config.h>
# include <stdio.h>
# include <stdarg.h>
# include <string.h>
# include <ctype.h>
# ifdef HAVE_STRINGS_H
# include <strings.h>
# endif /* HAVE_STRINGS_H */
# ifdef HAVE_BSTRING_H
# include <bstring.h>
# endif /* HAVE_BSTRING_H */
/*
* Stuff for WIN32 and OS/2...
*/
# if defined(WIN32) || defined(__EMX__)
# define strcasecmp _stricmp
# define strncasecmp _strnicmp
# endif /* WIN32 || __EMX__ */
/*
* C++ magic...
*/
# ifdef __cplusplus
extern "C" {
# endif /* __cplusplus */
/*
* Prototypes...
*/
# ifndef HAVE_STRDUP
extern char *__cddk_strdup(const char *);
# define strdup __cddk_strdup
# endif /* !HAVE_STRDUP */
# ifndef HAVE_STRCASECMP
extern int _cddk_strcasecmp(const char *, const char *);
# define strcasecmp _cddk_strcasecmp
# endif /* !HAVE_STRCASECMP */
# ifndef HAVE_STRNCASECMP
extern int _cddk_strncasecmp(const char *, const char *, size_t n);
# define strncasecmp _cddk_strncasecmp
# endif /* !HAVE_STRNCASECMP */
# ifndef HAVE_STRLCAT
extern size_t _cddk_strlcat(char *, const char *, size_t);
# define strlcat _cddk_strlcat
# endif /* !HAVE_STRLCAT */
# ifndef HAVE_STRLCPY
extern size_t _cddk_strlcpy(char *, const char *, size_t);
# define strlcpy _cddk_strlcpy
# endif /* !HAVE_STRLCPY */
# ifndef HAVE_SNPRINTF
extern int _cddk_snprintf(char *, size_t, const char *, ...)
# ifdef __GNUC__
__attribute__ ((__format__ (__printf__, 3, 4)))
# endif /* __GNUC__ */
;
# define snprintf _cddk_snprintf
# endif /* !HAVE_SNPRINTF */
# ifndef HAVE_VSNPRINTF
extern int _cddk_vsnprintf(char *, size_t, const char *, va_list);
# define vsnprintf _cddk_vsnprintf
# endif /* !HAVE_VSNPRINTF */
/*
* C++ magic...
*/
# ifdef __cplusplus
}
# endif /* __cplusplus */
#endif /* !_CUPS_STRING_H_ */
/*
* End of "$Id: string.h 343 2007-07-13 19:52:48Z mike $".
*/
|