I have been away from c for awhile and was hoping that someone could guide me on how to code the following:
I have a string for the time that is in the format hhmmss.sss (hour, minute, seconds, fraction of seconds). I would like to parse the string and store the values to integer stuct:
i.e.
int hour
int minutes
int seconds
int fractionSeconds
I am using a microntroller so I do not have time functions.