1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys: fmt: fix scn_u32_dec() documentation

This commit is contained in:
Kaspar Schleiser 2016-12-15 09:42:55 +01:00
parent 0bab8c0d61
commit e60e4f0fc9

View File

@ -214,10 +214,10 @@ size_t fmt_str(char *out, const char *str);
*
* Will convert up to @p n digits. Stops at any non-digit or '\0' character.
*
* @param[out] str Pointer to string to read from
* @param[in] str Pointer to string to read from
* @param[in] n Maximum nr of characters to consider
*
* @return nr of digits read
* @return converted uint32_t value
*/
uint32_t scn_u32_dec(const char *str, size_t n);