AmendHub

Download

thecloud

/

SimpleSpooler

/

QueryParser.h

 

(View History)

thecloud   Simple Spooler 0.1 release Latest amendment: 1 on 2026-07-29

1 /*
2 * QueryParser.h
3 * C interface to routines for parsing PostScript queries.
4 *
5 * Written by: Ken McLeod, 2026-02-10
6 * Last update: 2026-02-10
7 *
8 * This software is provided as-is, with no warranties expressed or implied,
9 * under the terms of the BSD 2-Clause License. See separate "LICENSE" file.
10 */
11
12 #ifndef __QUERY_PARSER__
13 #define __QUERY_PARSER__
14
15 #include <Types.h>
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 int BuildResponseToPSQuery(char *data, int dataLen, char *resp, int respLen);
22
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28 #endif /* __QUERY_PARSER__ */