view src/liboauth-test.c @ 3429:6cf5d50556d4

* tools/set-mxe-env.sh.in: Rename from tools/set_mxe_env.sh.in. * configure.ac: Update. * Makefile.in (clean): Delete generated tools/set-mxe-env.sh.
author John W. Eaton <jwe@octave.org>
date Thu, 16 Jan 2014 14:07:22 -0500
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * 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);
}