Dr. Dobb's Journal May 1997
while (*(start_of_store) == ' ') // strip leading // space if (*(start_of_store++) == '\0') break ; while (*Value == ' ') // strip leading space if (*(Value++) == '\0') break ;
Back to Article