|
|
ed5068 |
/*******************************************************************/
|
|
|
ed5068 |
/* u16ports: u16 variants of wide character string functions. */
|
|
|
12ee61 |
/* Copyright (C) 2017 SysDeer Technologies, LLC */
|
|
|
ed5068 |
/* Released under the Standard MIT License; see COPYING.U16PORTS. */
|
|
|
ed5068 |
/*******************************************************************/
|
|
|
ed5068 |
|
|
|
ed5068 |
#include <stdint.h>
|
|
|
ed5068 |
#include <u16ports/u16ports.h>
|
|
|
ed5068 |
|
|
|
ed5068 |
uint16_t * u16_wcscat(uint16_t * dst, const uint16_t * src)
|
|
|
ed5068 |
{
|
|
|
ed5068 |
u16_wcscpy(dst + u16_wcslen(dst),src);
|
|
|
ed5068 |
return dst;
|
|
|
ed5068 |
}
|