]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/array-private.h
License change: Apache License, Version 2.0.
[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 *
e3101897 6 * Licensed under Apache License v2.0. See the file "LICENSE" for more information.
eac3a0a0
MS
7 */
8
9#ifndef _CUPS_ARRAY_PRIVATE_H_
10# define _CUPS_ARRAY_PRIVATE_H_
11
12/*
13 * Include necessary headers...
14 */
15
d7225fc2 16# include <cups/array.h>
eac3a0a0
MS
17
18
19/*
20 * C++ magic...
21 */
22
23# ifdef __cplusplus
24extern "C" {
25# endif /* __cplusplus */
26
27
28/*
29 * Functions...
30 */
31
5a9febac
MS
32extern int _cupsArrayAddStrings(cups_array_t *a, const char *s,
33 char delim) _CUPS_API_1_5;
34extern cups_array_t *_cupsArrayNewStrings(const char *s, char delim)
35 _CUPS_API_1_5;
eac3a0a0
MS
36
37# ifdef __cplusplus
38}
39# endif /* __cplusplus */
40#endif /* !_CUPS_ARRAY_PRIVATE_H_ */