lsflib/src/hexdump.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 09 Jun 2009 12:42:30 +0200
changeset 98 0e8eddac99cb
parent 77 49e0babccb23
permissions -rw-r--r--
Install Target added The simple module can be autoinstalled into the proper section committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * lsflib/src/hexdump.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>

void hexdump (char *s, int len)
{
    int i;

    for (i = 0; i < len; i++) {
        printf ("%02X ", s[i]);
        if ((i % 40) == 0)
            printf ("\n");
    }
}