]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/array-private.h
4d3c29734a57edbe360ff7402d891c05379ecc89
[thirdparty/cups.git] / cups / array-private.h
1 /*
2 * "$Id$"
3 *
4 * Private array definitions for CUPS.
5 *
6 * Copyright 2011-2012 by Apple Inc.
7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Apple Inc. and are protected by Federal copyright
10 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
11 * which should have been included with this file. If this file is
12 * file is missing or damaged, see the license at "http://www.cups.org/".
13 *
14 * This file is subject to the Apple OS-Developed Software exception.
15 */
16
17 #ifndef _CUPS_ARRAY_PRIVATE_H_
18 # define _CUPS_ARRAY_PRIVATE_H_
19
20 /*
21 * Include necessary headers...
22 */
23
24 # include <cups/array.h>
25
26
27 /*
28 * C++ magic...
29 */
30
31 # ifdef __cplusplus
32 extern "C" {
33 # endif /* __cplusplus */
34
35
36 /*
37 * Functions...
38 */
39
40 extern int _cupsArrayAddStrings(cups_array_t *a, const char *s,
41 char delim) _CUPS_API_1_5;
42 extern cups_array_t *_cupsArrayNewStrings(const char *s, char delim)
43 _CUPS_API_1_5;
44
45 # ifdef __cplusplus
46 }
47 # endif /* __cplusplus */
48 #endif /* !_CUPS_ARRAY_PRIVATE_H_ */
49
50 /*
51 * End of "$Id$".
52 */