Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
49dc6a44e0602e6a70c0466d789476c8b12fe509
/
.
/
Tests
/
FindCups
/
Test
/
main.c
blob: 86952dba367faca9b2fc98e19eea05b6c52b872f [
file
]
#include
<cups/cups.h>
int
main
(
void
)
{
int
num_options
=
0
;
cups_option_t
*
options
=
NULL
;
num_options
=
cupsAddOption
(
CUPS_COPIES
,
"1"
,
num_options
,
&
options
);
cupsFreeOptions
(
num_options
,
options
);
return
0
;
}