2019-11-11 23:01:05 +01:00
|
|
|
#include <cups/cups.h>
|
|
|
|
|
2024-04-14 22:45:38 +02:00
|
|
|
int main(void)
|
2019-11-11 23:01:05 +01:00
|
|
|
{
|
|
|
|
int num_options = 0;
|
|
|
|
cups_option_t* options = NULL;
|
|
|
|
|
|
|
|
num_options = cupsAddOption(CUPS_COPIES, "1", num_options, &options);
|
|
|
|
cupsFreeOptions(num_options, options);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|