]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/array-private.h
Import CUPS v1.7.1
[thirdparty/cups.git] / cups / array-private.h
CommitLineData
eac3a0a0 1/*
61515785 2 * "$Id: array-private.h 3933 2012-10-01 03:01:10Z msweet $"
eac3a0a0
MS
3 *
4 * Private array definitions for CUPS.
5 *
5a9febac 6 * Copyright 2011-2012 by Apple Inc.
eac3a0a0
MS
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
5a9febac
MS
40extern int _cupsArrayAddStrings(cups_array_t *a, const char *s,
41 char delim) _CUPS_API_1_5;
42extern cups_array_t *_cupsArrayNewStrings(const char *s, char delim)
43 _CUPS_API_1_5;
eac3a0a0
MS
44
45# ifdef __cplusplus
46}
47# endif /* __cplusplus */
48#endif /* !_CUPS_ARRAY_PRIVATE_H_ */
49
50/*
61515785 51 * End of "$Id: array-private.h 3933 2012-10-01 03:01:10Z msweet $".
eac3a0a0 52 */