summaryrefslogtreecommitdiffstats
path: root/Tests/FindCups/Test/main.c
blob: b69d621f77c76aae4d0ccb8ed81c7e32bc5b6193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <cups/cups.h>

int main()
{
  int num_options = 0;
  cups_option_t* options = NULL;

  num_options = cupsAddOption(CUPS_COPIES, "1", num_options, &options);
  cupsFreeOptions(num_options, options);

  return 0;
}