4d44276d85
Amazing how many crept up over time, should have set the execute bit of .git/hooks/pre-commit already, duh. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
17 lines
446 B
C
17 lines
446 B
C
#ifndef _CTF_LOADER_H_
|
|
#define _CTF_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 ctf__load(struct cus *self, struct conf_load *conf, const char *filename);
|
|
|
|
#endif /* _CTF_LOADER_H_ */
|