Skip to content

Instantly share code, notes, and snippets.

@rmacqueen
Created January 13, 2017 21:57
Show Gist options
  • Save rmacqueen/174a815832723c2d4336675b5794a4a0 to your computer and use it in GitHub Desktop.
Save rmacqueen/174a815832723c2d4336675b5794a4a0 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <glib.h>
#include <stdint.h>
int
main (int argc, char *argv[])
{
unsigned int limit = g_ascii_strtod ("-1", NULL);
fprintf (stderr, "limit := %u\n", limit);
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment