cmogstored 1.8.1 - use default system stack size
[cmogstored.git] / path_parser.h
blob81426f4d4cd9f04f81476f8068b6c9db6b53ca7a
1 /*
2 * Copyright (C) 2012-2020 all contributors <cmogstored-public@yhbt.net>
3 * License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4 */
5 #include "config.h"
6 #include <stdint.h>
8 static void mog_devid_incr(uint32_t *mog_devid, unsigned c)
10 *mog_devid *= 10;
11 *mog_devid += c - '0';
13 /* no overflow checking here */