md5rec.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sun, 19 Jul 2009 19:44:48 +0200
changeset 101 176448af80fa
parent 77 49e0babccb23
child 124 8a983ee5fab7
permissions -rw-r--r--
Ignore files from the javadb project Do not nerve with class- and derby files committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * md5rec.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>
#include <lsf.h>

int main (int argc, char **argv)
{
    if (argc != 2) {
        printf ("Usage: %s <directory>\n", argv[0]);
        printf ("Report bugs to mbroeker@largo.homelinux.org\n");
        return EXIT_FAILURE;
    }

    md5recursive (argv[1], 1);

    return EXIT_SUCCESS;
}