File indexing completed on 2025-01-18 09:57:27
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027 #ifndef _FRIBIDI_TYPES_H
0028 #define _FRIBIDI_TYPES_H
0029
0030 #include "fribidi-common.h"
0031
0032 #include "fribidi-begindecls.h"
0033
0034
0035 # if defined (_SVR4) || defined (SVR4) || defined (__OpenBSD__) || \
0036 defined (_sgi) || defined (__sun) || defined (sun) || \
0037 defined (__digital__) || defined (__HP_cc)
0038 # include <inttypes.h>
0039 # elif defined (_AIX)
0040 # include <sys/inttypes.h>
0041 # else
0042 # include <stdint.h>
0043 # endif
0044
0045 typedef int fribidi_boolean;
0046
0047 typedef uint32_t FriBidiChar;
0048 typedef int FriBidiStrIndex;
0049
0050
0051 typedef FriBidiChar FriBidiBracketType;
0052
0053
0054 #define FRIBIDI_NO_BRACKET 0
0055
0056
0057
0058 #define FRIBIDI_TEST_BITS(x, mask) (((x) & (mask)) ? 1 : 0)
0059
0060 #define FRIBIDI_INCLUDE_BITS(x, mask) ((x) | (mask))
0061
0062 #define FRIBIDI_EXCLUDE_BITS(x, mask) ((x) & ~(mask))
0063
0064 #define FRIBIDI_SET_BITS(x, mask) ((x) |= (mask))
0065
0066 #define FRIBIDI_UNSET_BITS(x, mask) ((x) &= ~(mask))
0067
0068 #define FRIBIDI_ADJUST_BITS(x, mask, cond) \
0069 ((x) = ((x) & ~(mask)) | ((cond) ? (mask) : 0))
0070
0071 #define FRIBIDI_ADJUST_AND_TEST_BITS(x, mask, cond) \
0072 FRIBIDI_TEST_BITS(FRIBIDI_ADJUST_BITS((x), (mask), (cond)), (mask))
0073
0074 #include "fribidi-enddecls.h"
0075
0076 #endif
0077
0078
0079