HelenOS sources

strtoul           103 common/include/stdlib.h extern unsigned long strtoul(const char *__restrict__, char **__restrict__, int);
strtoul           169 common/include/str.h extern unsigned long strtoul(const char *, char **, int);
strtoul           103 kernel/generic/common/include/stdlib.h extern unsigned long strtoul(const char *__restrict__, char **__restrict__, int);
strtoul           169 kernel/generic/common/include/str.h extern unsigned long strtoul(const char *, char **, int);
strtoul            77 uspace/app/bdsh/cmds/modules/printf/printf.c 		printf("%u", (unsigned int)(strtoul(arg, NULL, 10)));
strtoul            60 uspace/app/kill/kill.c 	taskid = strtoul(argv[1], &eptr, 0);
strtoul            55 uspace/app/testwrit/testwrit.c 	iterations = strtoul(argv[1], &end, 10);
strtoul           528 uspace/drv/bus/isa/isa.c 	addr = strtoul(val, &end, 0x10);
strtoul           103 uspace/lib/c/common/include/stdlib.h extern unsigned long strtoul(const char *__restrict__, char **__restrict__, int);
strtoul           169 uspace/lib/c/common/include/str.h extern unsigned long strtoul(const char *, char **, int);
strtoul           268 uspace/lib/c/test/strtol.c 	output = strtoul(input = "-10", &endp, base = 0);
strtoul           177 uspace/lib/clui/src/nchoice.c 	c = strtoul(str, &eptr, 10);
strtoul            60 uspace/lib/cpp/src/string.cpp         unsigned long result = ::strtoul(str.c_str(), &end, base);
strtoul           308 uspace/lib/inet/src/addr.c 		*prefix = strtoul(cur, &cur, 10);
strtoul           393 uspace/lib/inet/src/addr.c 		*prefix = strtoul(cur, (char **)&cur, 10);
strtoul           103 uspace/lib/posix/include/common/stdlib.h extern unsigned long strtoul(const char *__restrict__, char **__restrict__, int);
strtoul           169 uspace/lib/posix/include/common/str.h extern unsigned long strtoul(const char *, char **, int);
strtoul            66 uspace/lib/usb/src/dev.c 		*dev_handle = strtoul(dev_path, NULL, 10);
strtoul           155 uspace/srv/devman/match.c 		score = strtoul(buf, &buf, 10);
strtoul           457 uspace/srv/hid/rfb/main.c 	unsigned long width = strtoul(argv[2], &endptr, 0);
strtoul           464 uspace/srv/hid/rfb/main.c 	unsigned long height = strtoul(argv[3], &endptr, 0);
strtoul           473 uspace/srv/hid/rfb/main.c 		port = strtoul(argv[4], &endptr, 0);
HelenOS homepage, sources at GitHub