00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef ISC_REGION_H
00021 #define ISC_REGION_H 1
00022
00023
00024
00025 #include <isc/types.h>
00026 #include <isc/lang.h>
00027
00028 struct isc_region {
00029 unsigned char * base;
00030 unsigned int length;
00031 };
00032
00033 struct isc_textregion {
00034 char * base;
00035 unsigned int length;
00036 };
00037
00038
00039
00040
00041 struct isc_constregion {
00042 const void * base;
00043 unsigned int length;
00044 };
00045
00046 struct isc_consttextregion {
00047 const char * base;
00048 unsigned int length;
00049 };
00050
00051
00052
00053
00054
00055
00056
00057 #define isc_region_consume(r,l) \
00058 do { \
00059 isc_region_t *_r = (r); \
00060 unsigned int _l = (l); \
00061 INSIST(_r->length >= _l); \
00062 _r->base += _l; \
00063 _r->length -= _l; \
00064 } while (0)
00065
00066 #define isc_textregion_consume(r,l) \
00067 do { \
00068 isc_textregion_t *_r = (r); \
00069 unsigned int _l = (l); \
00070 INSIST(_r->length >= _l); \
00071 _r->base += _l; \
00072 _r->length -= _l; \
00073 } while (0)
00074
00075 #define isc_constregion_consume(r,l) \
00076 do { \
00077 isc_constregion_t *_r = (r); \
00078 unsigned int _l = (l); \
00079 INSIST(_r->length >= _l); \
00080 _r->base += _l; \
00081 _r->length -= _l; \
00082 } while (0)
00083
00084
00085 ISC_LANG_BEGINDECLS
00086
00087 int
00088 isc_region_compare(isc_region_t *r1, isc_region_t *r2);
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102 ISC_LANG_ENDDECLS
00103
00104 #endif