Changeset 40938 in vbox for trunk/include
- Timestamp:
- Apr 16, 2012 11:58:26 AM (13 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm.h
r40931 r40938 3364 3364 if (RT_UNLIKELY(*pu32 != u32)) 3365 3365 return (uint32_t *)pu32; 3366 return (uint32_t *)NULL;3366 return NULL; 3367 3367 } 3368 3368 -
trunk/include/iprt/string.h
r40931 r40938 1419 1419 DECLINLINE(char *) RTLatin1PutCp(char *psz, RTUNICP CodePoint) 1420 1420 { 1421 AssertReturn(CodePoint < 0x100, (char *)NULL);1421 AssertReturn(CodePoint < 0x100, NULL); 1422 1422 *psz++ = (unsigned char)CodePoint; 1423 1423 return psz;
Note:
See TracChangeset
for help on using the changeset viewer.