Created
April 9, 2015 01:56
-
-
Save mattd/49fa4208ab77cd7f6396 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static char get_formatted_countdown() { | |
int seconds = s_countdown_seconds % 60; | |
int minutes = (s_countdown_seconds / 60) % 60; | |
char str[6]; | |
return sprintf(str, "%d:%d", minutes, seconds); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment