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