unistr.h   unistr.h 
skipping to change at line 531 skipping to change at line 531
/* Copy no more than N units of SRC to DEST. */ /* Copy no more than N units of SRC to DEST. */
/* Similar to strncpy(), wcsncpy(). */ /* Similar to strncpy(), wcsncpy(). */
extern uint8_t * extern uint8_t *
u8_strncpy (uint8_t *dest, const uint8_t *src, size_t n); u8_strncpy (uint8_t *dest, const uint8_t *src, size_t n);
extern uint16_t * extern uint16_t *
u16_strncpy (uint16_t *dest, const uint16_t *src, size_t n); u16_strncpy (uint16_t *dest, const uint16_t *src, size_t n);
extern uint32_t * extern uint32_t *
u32_strncpy (uint32_t *dest, const uint32_t *src, size_t n); u32_strncpy (uint32_t *dest, const uint32_t *src, size_t n);
/* Copy no more than N units of SRC to DEST, returning the address of /* Copy no more than N units of SRC to DEST. Return a pointer past the las
the last unit written into DEST. */ t
non-NUL unit written into DEST. */
/* Similar to stpncpy(). */ /* Similar to stpncpy(). */
extern uint8_t * extern uint8_t *
u8_stpncpy (uint8_t *dest, const uint8_t *src, size_t n); u8_stpncpy (uint8_t *dest, const uint8_t *src, size_t n);
extern uint16_t * extern uint16_t *
u16_stpncpy (uint16_t *dest, const uint16_t *src, size_t n); u16_stpncpy (uint16_t *dest, const uint16_t *src, size_t n);
extern uint32_t * extern uint32_t *
u32_stpncpy (uint32_t *dest, const uint32_t *src, size_t n); u32_stpncpy (uint32_t *dest, const uint32_t *src, size_t n);
/* Append SRC onto DEST. */ /* Append SRC onto DEST. */
/* Similar to strcat(), wcscat(). */ /* Similar to strcat(), wcscat(). */
 End of changes. 1 change blocks. 
2 lines changed or deleted 3 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/