]>
Commit | Line | Data |
---|---|---|
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 | |
24 | extern "C" { | |
25 | # endif /* __cplusplus */ | |
26 | ||
27 | ||
28 | /* | |
29 | * Functions... | |
30 | */ | |
31 | ||
5a9febac | 32 | extern int _cupsArrayAddStrings(cups_array_t *a, const char *s, |
e3586875 | 33 | char delim) _CUPS_PRIVATE; |
5a9febac | 34 | extern cups_array_t *_cupsArrayNewStrings(const char *s, char delim) |
e3586875 | 35 | _CUPS_PRIVATE; |
eac3a0a0 MS |
36 | |
37 | # ifdef __cplusplus | |
38 | } | |
39 | # endif /* __cplusplus */ | |
40 | #endif /* !_CUPS_ARRAY_PRIVATE_H_ */ |