/* * QueryParser.h * C interface to routines for parsing PostScript queries. * * Written by: Ken McLeod, 2026-02-10 * Last update: 2026-02-10 * * This software is provided as-is, with no warranties expressed or implied, * under the terms of the BSD 2-Clause License. See separate "LICENSE" file. */ #ifndef __QUERY_PARSER__ #define __QUERY_PARSER__ #include #ifdef __cplusplus extern "C" { #endif int BuildResponseToPSQuery(char *data, int dataLen, char *resp, int respLen); #ifdef __cplusplus } #endif #endif /* __QUERY_PARSER__ */