view src/liboauth-test.c @ 5864:166aff1564ee

build-scons.mk: Update to version 4.1.0.post1. * src/build-scons.mk: Update version, checksum, subdirectory name, and download url.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 21 Aug 2021 20:49:11 +0200
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);
}