]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/array-private.h
Merge changes from CUPS 1.6svn-r10056
[thirdparty/cups.git] / cups / array-private.h
CommitLineData
eac3a0a0
MS
1/*
2 * "$Id$"
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
d7225fc2 24# include <cups/array.h>
eac3a0a0
MS
25
26
27/*
28 * C++ magic...
29 */
30
31# ifdef __cplusplus
32extern "C" {
33# endif /* __cplusplus */
34
35
36/*
37 * Functions...
38 */
39
40extern int _cupsArrayAddStrings(cups_array_t *a, const char *s)
41 _CUPS_API_1_5;
42extern 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$".
51 */