You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
732 B
41 lines
732 B
/*
|
|
* Private array definitions for CUPS.
|
|
*
|
|
* Copyright 2011-2012 by Apple Inc.
|
|
*
|
|
* Licensed under Apache License v2.0. See the file "LICENSE" for more information.
|
|
*/
|
|
|
|
#ifndef _CUPS_ARRAY_PRIVATE_H_
|
|
# define _CUPS_ARRAY_PRIVATE_H_
|
|
|
|
/*
|
|
* Include necessary headers...
|
|
*/
|
|
|
|
# include <cups/array.h>
|
|
|
|
|
|
/*
|
|
* C++ magic...
|
|
*/
|
|
|
|
# ifdef __cplusplus
|
|
extern "C" {
|
|
# endif /* __cplusplus */
|
|
|
|
|
|
/*
|
|
* Functions...
|
|
*/
|
|
|
|
extern int _cupsArrayAddStrings(cups_array_t *a, const char *s,
|
|
char delim) _CUPS_PRIVATE;
|
|
extern cups_array_t *_cupsArrayNewStrings(const char *s, char delim)
|
|
_CUPS_PRIVATE;
|
|
|
|
# ifdef __cplusplus
|
|
}
|
|
# endif /* __cplusplus */
|
|
#endif /* !_CUPS_ARRAY_PRIVATE_H_ */
|