]> git.ipfire.org Git - thirdparty/cups.git/blob - test/ippproxy.c
176e4039b5b5e8a8dcefa8665b65e63a13678aae
[thirdparty/cups.git] / test / ippproxy.c
1 /*
2 * "$Id$"
3 *
4 * CUPS Cloud Proxy for HP PCL and IPP Everywhere printers.
5 *
6 * Copyright 2014 by Apple Inc.
7 */
8
9 #include <cups/cups.h>
10
11
12 /*
13 * 'main()' - Main entry for cupsproxy.
14 */
15
16 int /* O - Exit status */
17 main(int argc, /* I - Number of command-line arguments */
18 char *argv[]) /* I - Command-line arguments */
19 {
20 (void)argc;
21 (void)argv;
22
23 return (0);
24 }
25
26
27 /*
28 * End of "$Id$".
29 */