Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | lib/libc: Fix string0's implementation of strncpy. | Damien George | 2020-07-22 |
| | | | | | | | Fixing 98e583430fb7b793119db27bad9f98119e81579f, the semantics of strncpy require that the remainder of dst be filled with null bytes. Signed-off-by: Damien George <damien@micropython.org> | ||
* | lib/libc: Add implementation of strncpy. | Thorsten von Eicken | 2020-07-20 |
| | |||
* | lib/libc/string0: Add simple implementations of strspn and strcspn. | Damien George | 2019-10-30 |
| | | | | They are needed for littlefs. | ||
* | all: Use the name MicroPython consistently in comments | Alexander Steffen | 2017-07-31 |
| | | | | | There were several different spellings of MicroPython present in comments, when there should be only one. | ||
* | lib/libc/string0: Remove better-than-standard strncpy() implementation. | Paul Sokolovsky | 2016-05-02 |
| | | | | | ANSI C doesn't require that strncpy() produced null-terminated string, so it's basicly useless for string manipulation. | ||
* | lib/libc/string0: Add strncpy() implementation. | Paul Sokolovsky | 2016-05-02 |
| | |||
* | lib/libc/string0: Use uintptr_t instead of uint32_t. | Damien George | 2015-12-31 |
| | | | | This makes the code portable to non-32-bit architectures. | ||
* | lib/libc: Add memchr. We already have strchr, but memchr is useful too. | Daniel Campora | 2015-04-28 |
| | |||
* | lib/libc/string0.c: Remove include of std.h, replace with string.h. | Damien George | 2015-04-18 |
| | | | | Much more portable this way. | ||
* | string0.c: Move from stmhal/ to lib/. | Paul Sokolovsky | 2015-04-05 |