syslogd: small shrink
[oweals/busybox.git] / printutils / lpr.h
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Copyright 2008 Walter Harms (WHarms@bfs.de)
4  *
5  * Licensed under the GPL v2, see the file LICENSE in this tarball.
6  */
7 #ifndef _LPR_H_
8 #define _LPR_H_
9
10 struct netprint {
11         char *queue;
12         char *server;
13         struct len_and_sockaddr *lsa;
14 };
15
16 void parse_prt(const char *buf, struct netprint *netprint);
17 #endif