summaryrefslogtreecommitdiffstats
path: root/src/liboauth-test.c
blob: 72332b69023b51db6b25fda1fabeecdf78a66e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * This file is part of MXE. See LICENSE.md for licensing 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);
}