]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/util.h
Merge changes from CUPS 1.4svn-r8162.
[thirdparty/cups.git] / scheduler / util.h
CommitLineData
ef416fc2 1/*
b19ccc9e 2 * "$Id: util.h 7711 2008-07-02 04:39:27Z mike $"
ef416fc2 3 *
4 * Mini-daemon utility definitions for the Common UNIX Printing System (CUPS).
5 *
c934a06c 6 * Copyright 2007-2008 by Apple Inc.
ef416fc2 7 * Copyright 1997-2005 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14 */
15
16#ifndef _CUPSD_UTIL_H_
17# define _CUPSD_UTIL_H_
18
19/*
20 * Include necessary headers...
21 */
22
23# include <cups/cups.h>
24# include <cups/file.h>
25# include <cups/string.h>
26# include <stdlib.h>
27# include <errno.h>
28# include <signal.h>
29# include <dirent.h>
30
31
4509bb49
MS
32/*
33 * C++ magic...
34 */
35
36# ifdef __cplusplus
37extern "C" {
38# endif /* __cplusplus */
39
40
41/*
42 * Types...
43 */
44
45typedef int (*cupsd_compare_func_t)(const void *, const void *);
46
47
ef416fc2 48/*
49 * Prototypes...
50 */
51
c934a06c 52extern int cupsdCompareNames(const char *s, const char *t);
ed6e7faf 53extern cups_array_t *cupsdCreateStringsArray(const char *s);
c934a06c
MS
54extern int cupsdExec(const char *command, char **argv);
55extern cups_file_t *cupsdPipeCommand(int *pid, const char *command,
56 char **argv, int user);
57extern void cupsdSendIPPGroup(ipp_tag_t group_tag);
58extern void cupsdSendIPPHeader(ipp_status_t status_code,
59 int request_id);
60extern void cupsdSendIPPInteger(ipp_tag_t value_tag,
61 const char *name, int value);
62extern void cupsdSendIPPString(ipp_tag_t value_tag,
63 const char *name, const char *value);
64extern void cupsdSendIPPTrailer(void);
ef416fc2 65
66
4509bb49
MS
67# ifdef __cplusplus
68}
69# endif /* __cplusplus */
70
ef416fc2 71#endif /* !_CUPSD_UTIL_H_ */
72
73/*
b19ccc9e 74 * End of "$Id: util.h 7711 2008-07-02 04:39:27Z mike $".
ef416fc2 75 */