Changeset 45 for NEWT0/trunk/src/newt_core/NewtObj.c
- Timestamp:
- 10/03/05 13:54:21 (3 years ago)
- Files:
-
- 1 modified
-
NEWT0/trunk/src/newt_core/NewtObj.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
NEWT0/trunk/src/newt_core/NewtObj.c
r44 r45 47 47 static newtRef NewtDeeplyCloneMap(newtRefArg map, int32_t len); 48 48 static void NewtObjRemoveFrameSlot(newtObjRef obj, newtRefArg slot); 49 static bool NewtStrNBeginsWi dth(char * str, uint32_t len, char * sub, uint32_t sublen);49 static bool NewtStrNBeginsWith(char * str, uint32_t len, char * sub, uint32_t sublen); 50 50 static bool NewtStrIsSubclass(char * sub, uint32_t sublen, char * supr, uint32_t suprlen); 51 51 static bool NewtStrHasSubclass(char * sub, uint32_t sublen, char * supr, uint32_t suprlen); … … 3685 3685 */ 3686 3686 3687 bool NewtStrNBeginsWi dth(char * str, uint32_t len, char * sub, uint32_t sublen)3687 bool NewtStrNBeginsWith(char * str, uint32_t len, char * sub, uint32_t sublen) 3688 3688 { 3689 3689 while (0 < len && 0 < sublen && *str != '\0' && *sub != '\0') … … 3720 3720 return false; 3721 3721 3722 return NewtStrNBeginsWi dth(sub, sublen, supr, suprlen);3722 return NewtStrNBeginsWith(sub, sublen, supr, suprlen); 3723 3723 } 3724 3724
