Changes in uspace/lib/c/generic/str.c [cde999a:16bfcd3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/str.c
rcde999a r16bfcd3 37 37 38 38 #include <str.h> 39 #include <stdlib.h> 39 40 #include <stddef.h> 41 #include <assert.h> 40 42 #include <stdint.h> 41 #include <stdlib.h>42 #include <assert.h>43 43 #include <ctype.h> 44 #include <malloc.h> 44 45 #include <errno.h> 45 46 #include <align.h> … … 918 919 * @param src Source utf16 string. 919 920 * 920 * @return EOK, if success, an error code otherwise.921 * @return EOK, if success, negative otherwise. 921 922 */ 922 923 int utf16_to_str(char *dest, size_t size, const uint16_t *src) … … 961 962 * @param src Source string. 962 963 * 963 * @return EOK, if success, an error code otherwise.964 * @return EOK, if success, negative otherwise. 964 965 */ 965 966 int str_to_utf16(uint16_t *dest, size_t dlen, const char *src)
Note:
See TracChangeset
for help on using the changeset viewer.