dwarves/dwarf_loader.h
Arnaldo Carvalho de Melo 4848eef743 core: Rename {cus,dwarf,ctf}__load to {cus,dwarf,ctf}__load_file
Because we already use ctf__load in libctf.c, rename the others to
disambiguate, and also as there are the __load_dir and __load_files
it looks more consistent.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2009-03-24 16:48:41 -03:00

18 lines
466 B
C

#ifndef _DWARF_LOADER_H_
#define _DWARF_LOADER_H_ 1
/*
Copyright (C) 2008 Arnaldo Carvalho de Melo <acme@redhat.com>
This program is free software; you can redistribute it and/or modify it
under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation.
*/
struct cus;
struct conf_load;
int dwarf__load_file(struct cus *self, struct conf_load *conf,
const char *filename);
#endif /* _DWARF_LOADER_H_ */