Skip to content

Instantly share code, notes, and snippets.

@Nickstr
Created October 2, 2017 07:54
Show Gist options
  • Save Nickstr/203c3ff40e12b618a634dd9e612cf9cf to your computer and use it in GitHub Desktop.
Save Nickstr/203c3ff40e12b618a634dd9e612cf9cf to your computer and use it in GitHub Desktop.
/*********************************************************************
*********************************************************************/
static int
__vers_digit_for_char(char c) {
switch (c) {
case '0': return 0;
case '1': return 1;
case '2': return 2;
case '3': return 3;
case '4': return 4;
case '5': return 5;
case '6': return 6;
case '7': return 7;
case '8': return 8;
case '9': return 9;
default: return -1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment