Skip to content

Instantly share code, notes, and snippets.

@mattd
Created April 9, 2015 01:56
Show Gist options
  • Save mattd/49fa4208ab77cd7f6396 to your computer and use it in GitHub Desktop.
Save mattd/49fa4208ab77cd7f6396 to your computer and use it in GitHub Desktop.
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