blob: 8898b982f41d79fe92a81794162e063c015f256a [file] [log] [blame]
Denis Vlasenko68444b92008-02-22 22:24:48 +00001/* 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
10struct netprint {
11 char *queue;
12 char *server;
13 struct len_and_sockaddr *lsa;
14};
15
16void parse_prt(const char *buf, struct netprint *netprint);
17#endif