/* libiso8601/src/tests/xxx.c
 *
 *  Copyright: ©2007–2011, Güralp Systems Ltd.
 *  Author: Laurence Withers <lwithers@guralp.com>
 *  License: GPLv3
 */

#include "iso8601.h"

#include <stdio.h>
#include <string.h>



int
main(int argc, char* argv[])
{
    int ret = 0;

    if(argc == 2 && !strcmp(argv[1], "--print-summary")) {
        fputs("One line summary.\n", stdout);
        return 0;
    }

    if(argc == 1) {
        /* empty argument list */
    }

    /* TODO */

    return ret;
}



/* options for text editors
vim: expandtab:ts=4:sw=4
*/
