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