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.

13 lines
226 B

#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;
}