/* Copyright (C) 2001-2023 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. Refer to licensing information at http://www.artifex.com or contact Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* Prototypes for procedures in gsutil.c */ #ifndef gsutil_INCLUDED # define gsutil_INCLUDED #include "std.h" #include "gstypes.h" /* ------ Unique IDs ------ */ /* Generate a block of unique IDs. */ gs_id gs_next_ids(const gs_memory_t *mem, uint count); /* ------ Memory utilities ------ */ /* Transpose an 8 x 8 block of bits. */ /* line_size is the raster of the input data; */ /* dist is the distance between output bytes. */ /* Dot matrix printers need this. */ /* Note that with a negative dist value, */ /* this will rotate an 8 x 8 block 90 degrees counter-clockwise. */ void memflip8x8(const byte * inp, int line_size, byte * outp, int dist); #ifdef PACIFY_VALGRIND /* A variant that does the same thing, but allows for undefined * bits at the end of a line. */ void memflip8x8_eol(const byte * inp, int line_size, byte * outp, int dist, int bits); #endif /* Get an unsigned, big-endian 32-bit value. */ ulong get_u32_msb(const byte *p); /* Put an unsigned, big-endian 32-bit value. */ void put_u32_msb(byte *p, const ulong n, const int offs); /* ------ String utilities ------ */ /* Compare two strings, returning -1 if the first is less, */ /* 0 if they are equal, and 1 if first is greater. */ /* We can't use memcmp, because we always use unsigned characters. */ int bytes_compare(const byte * str1, uint len1, const byte * str2, uint len2); /* Test whether a string matches a pattern with wildcards. */ /* If psmp == NULL, use standard parameters: '*' = any substring, */ /* '?' = any character, '\\' quotes next character, don't ignore case. */ typedef struct string_match_params_s { int any_substring; /* '*' */ int any_char; /* '?' */ int quote_next; /* '\\' */ bool ignore_case; bool slash_equiv; /* '\\' is equivalent to '/' for Windows filename matching */ } string_match_params; extern const string_match_params string_match_params_default; bool string_match(const byte * str, uint len, const byte * pstr, uint plen, const string_match_params * psmp); #endif /* gsutil_INCLUDED */