/* Part of XPCE --- The SWI-Prolog GUI toolkit Author: Jan Wielemaker and Anjo Anjewierden E-mail: jan@swi.psy.uva.nl WWW: http://www.swi.psy.uva.nl/projects/xpce/ Copyright (c) 1985-2002, University of Amsterdam All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef _STR_H_INCLUDED #define _STR_H_INCLUDED #include #include #include #undef charA /* from pce-include.h */ typedef unsigned char charA; /* 8-bit character */ typedef wchar_t charW; /* wide character */ #define STR_SIZE_BITS 30 #define STR_MAX_SIZE ((1L<s_iswide == 0) /* 8-bit string */ #define isstrW(s) ((s)->s_iswide == 1) /* 16-bit string */ #define str_len(s) ((s)->s_size) /* length of the string */ #define str_wsize(s) ((((s)->s_iswide \ ? (s)->size * sizeof(charW) \ : (s)->size) + sizeof(wint_t) - 1) / sizeof(wint_t)) #define str_fetchA(s, i) (s->s_textA[(i)]) #define str_fetchW(s, i) (s->s_textW[(i)]) #define str_storeA(s, i, c) (s->s_textA[(i)] = (charA)(c)) #define str_storeW(s, i, c) (s->s_textW[(i)] = (charW)(c)) #define str_cphdr(t, f) do { (t)->hdr.mask = (f)->hdr.mask; \ } while(0) #define str_inithdr(s, w) do { (s)->hdr.mask = 0; \ (s)->s_iswide = w; \ } while(0) #define str_datasize(s) (isstrA(s) ? (s)->s_size : (s)->s_size * sizeof(charW)) #ifndef FALSE #define FALSE 0 #define TRUE 1 #endif /******************************* * TMP STRINGS * *******************************/ typedef struct tmp_string { string s; /* string itself */ long allocated; /* allocated size */ charA buffer[1024]; /* initial buffer */ } tmp_string; /******************************* * ENCODING * *******************************/ typedef struct { charA newline; charA *tolower; charA *toupper; } str_encodingA, *StrEncodingA; typedef struct { charW newline; int min_byte1; int max_byte1; charW **tolower; charW **toupper; } str_encodingW, *StrEncodingW; #endif /*_STR_H_INCLUDED*/