mxe/src/liboauth-test.c

17 lines
250 B
C
Raw Normal View History

/*
* This file is part of MXE.
2012-03-29 11:14:15 +01:00
* See index.html for further information.
*/
#include <stdio.h>
#include <oauth.h>
int main (int argc, char *argv[])
{
(void)argc;
(void)argv;
printf("Nonce: %s", oauth_gen_nonce());
return (0);
}