Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
strnlen_copy.c@0:be95bfb06686, 2022-01-17 (annotated)
- Committer:
- wuliqunyy
- Date:
- Mon Jan 17 13:20:09 2022 +0000
- Revision:
- 0:be95bfb06686
a working non_flat + adc_didt for ehp regulation version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
wuliqunyy | 0:be95bfb06686 | 1 | #include <stddef.h> |
wuliqunyy | 0:be95bfb06686 | 2 | |
wuliqunyy | 0:be95bfb06686 | 3 | size_t |
wuliqunyy | 0:be95bfb06686 | 4 | strnlen (const char *s, size_t maxlen) |
wuliqunyy | 0:be95bfb06686 | 5 | { |
wuliqunyy | 0:be95bfb06686 | 6 | size_t i; |
wuliqunyy | 0:be95bfb06686 | 7 | for (i = 0; i < maxlen; ++i) |
wuliqunyy | 0:be95bfb06686 | 8 | if (s[i] == '\0') |
wuliqunyy | 0:be95bfb06686 | 9 | break; |
wuliqunyy | 0:be95bfb06686 | 10 | return i; |
wuliqunyy | 0:be95bfb06686 | 11 | } |