]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/testhttp.c
Finished main HTTP client stuff.
[thirdparty/cups.git] / cups / testhttp.c
CommitLineData
04c3c0a1 1/*
2 * "$Id: testhttp.c,v 1.1 1999/01/24 14:18:43 mike Exp $"
3 *
4 * HTTP test program for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 1997-1999 by Easy Software Products.
7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Easy Software Products and are protected by Federal
10 * copyright law. Distribution and use rights are outlined in the file
11 * "LICENSE.txt" which should have been included with this file. If this
12 * file is missing or damaged please contact Easy Software Products
13 * at:
14 *
15 * Attn: CUPS Licensing Information
16 * Easy Software Products
17 * 44145 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636-3111 USA
19 *
20 * Voice: (301) 373-9603
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 *
24 * Contents:
25 *
26 * main() - Main entry.
27 */
28
29/*
30 * Include necessary headers...
31 */
32
33#include <config.h>
34#include "http.h"
35
36
37/*
38 * 'main()' - Main entry.
39 */
40
41int /* O - Exit status */
42main(int argc, /* I - Number of command-line arguments */
43 char *argv[]) /* I - Command-line arguments */
44{
45}
46
47
48/*
49 * End of "$Id: testhttp.c,v 1.1 1999/01/24 14:18:43 mike Exp $".
50 */