strtok.c Source
/* Copyright (c) Microsoft Corporation. All rights reserved. */ #include /* ISO/IEC 9899 7.11.5.8 strtok. DEPRECATED. * Split string into tokens, and return one at a time while retaining state * internally. * * WARNING: Only one set of state is held and ...