diff options
author | Tony Theodore <tonyt@logyst.com> | 2011-01-03 05:34:14 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2011-01-03 05:34:14 (GMT) |
commit | 692fde62484c94a57bb0d769c53344f7a1af7655 (patch) | |
tree | 81eb38c33a85be49d382710418ad98f4f9faf58f /src/liboauth-test.c | |
parent | e9ec1dd0651c15e709d6a8a75cb7101d0e6d3b88 (diff) | |
download | mxe-692fde62484c94a57bb0d769c53344f7a1af7655.zip mxe-692fde62484c94a57bb0d769c53344f7a1af7655.tar.gz mxe-692fde62484c94a57bb0d769c53344f7a1af7655.tar.bz2 |
package liboauth: add test program and remove check target and associated variables
Diffstat (limited to 'src/liboauth-test.c')
-rw-r--r-- | src/liboauth-test.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/liboauth-test.c b/src/liboauth-test.c new file mode 100644 index 0000000..74e5974 --- /dev/null +++ b/src/liboauth-test.c @@ -0,0 +1,14 @@ +/* This file is part of mingw-cross-env. */ +/* See doc/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); +} |