I want to check if the characters of a string are in this form:
hw: + one numeric character + , + one numeric character
hw:0,0
hw:1,0
hw:1,1
hw:0,2
Et cetera
/* 'hw:' + 'one numeric character' + ',' + 'one numeric character' */
I found strncmp(arg, "hw:", 3) but that only checks the first 3 characters.