diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-09-28 12:29:58 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-09-28 12:29:58 +0200 |
commit | 53bafb796b654d1f7206196fd97cf8ba0b08ad7a (patch) | |
tree | ce708d62f28f18f15ccecc74cac9649cd846e203 /util.h | |
parent | 723024faf087b48ba8b93db6821bb17f52751120 (diff) |
Imported Upstream version 3.0upstream/3.0
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* * This file is part of the dmidecode project. * - * Copyright (C) 2003-2010 Jean Delvare <khali@linux-fr.org> + * Copyright (C) 2003-2015 Jean Delvare <jdelvare@suse.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -25,6 +25,7 @@ #define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0])) int checksum(const u8 *buf, size_t len); -void *mem_chunk(size_t base, size_t len, const char *devmem); +void *read_file(size_t len, const char *filename); +void *mem_chunk(off_t base, size_t len, const char *devmem); int write_dump(size_t base, size_t len, const void *data, const char *dumpfile, int add); u64 u64_range(u64 start, u64 end); |