00001 00013 #ifndef CRANGEUTILS_H_INCLUDED 00014 #define CRANGEUTILS_H_INCLUDED 00015 00016 #include <Coconut/coconut-sysdep.h> 00017 00018 static inline void 00019 c_range_set(NSRange * dst, uint_t loc, uint_t len) 00020 { 00021 dst->location = loc ; dst->length = len ; 00022 } 00023 00024 #endif /* CRANGEUTILS_H_INCLUDED */ 00025