Revert manifest to default one
[external/cups.git] / cups / array-private.h
1 /*
2  * "$Id: array-private.h 10035 2011-09-30 22:52:42Z mike $"
3  *
4  *   Private array definitions for CUPS.
5  *
6  *   Copyright 2011 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                                              _CUPS_API_1_5;
42 extern cups_array_t     *_cupsArrayNewStrings(const char *s) _CUPS_API_1_5;
43
44 #  ifdef __cplusplus
45 }
46 #  endif /* __cplusplus */
47 #endif /* !_CUPS_ARRAY_PRIVATE_H_ */
48
49 /*
50  * End of "$Id: array-private.h 10035 2011-09-30 22:52:42Z mike $".
51  */