]> git.ipfire.org Git - thirdparty/cups.git/blob - test/ippeveps.c
Stub out the PS and PCL print commands for ippeveprinter.
[thirdparty/cups.git] / test / ippeveps.c
1 /*
2 * Generic Adobe PostScript printer command for ippeveprinter/CUPS.
3 *
4 * Copyright © 2019 by Apple Inc.
5 *
6 * Licensed under Apache License v2.0. See the file "LICENSE" for more
7 * information.
8 */
9
10 /*
11 * Include necessary headers...
12 */
13
14 #include "ippevecommon.h"
15 #include <cups/ppd.h>
16
17
18 /*
19 * 'main()' - Main entry for PostScript printer command.
20 */
21
22 int /* O - Exit status */
23 main(int argc, /* I - Number of command-line arguments */
24 char *argv[]) /* I - Command-line arguments */
25 {
26 (void)argc;
27 (void)argv;
28
29 return (0);
30 }