md5rec.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sun, 26 Jul 2009 18:21:25 +0200
changeset 103 be3fe4a4f097
parent 77 49e0babccb23
child 124 8a983ee5fab7
permissions -rw-r--r--
Function Pointer Demo simplified It makes more sense to show the basic usage of fps 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;
}