md5rec: the location of the header has changed
i have moved the lsf.h header to lsf/lsf.h in the lsflib project
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/**
* Compont literals in C aka anonymous arrays
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
static void show (char *arr[])
{
int i = 0;
assert (arr != NULL);
while (arr[i] != NULL) {
printf ("arr[%d] = %s\n", i, arr[i]);
i++;
}
}
int main (int argc, char **argv)
{
show ((char *[]) {
"Here", "we", "go", "again", NULL});
return EXIT_SUCCESS;
}