~ubuntu-branches/ubuntu/trusty/kcov/trusty

« back to all changes in this revision

Viewing changes to src/include/kc_elf.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Tautschnig
  • Date: 2010-12-17 10:03:23 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101217100323-03njos8sfhhuax0y
Tags: 4-1
* New upstream release
  - Fixes FTBFS on non-x86 architectures (closes: #603135).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2010 Simon Kagstrom, Thomas Neumann
 
3
 *
 
4
 * See COPYING for license details
 
5
 */
 
6
#ifndef __KC_ELF_H__
 
7
#define __KC_ELF_H__
 
8
 
 
9
struct kc_file;
 
10
 
 
11
struct kc_elf
 
12
{
 
13
        const char *filename;
 
14
 
 
15
        int n_files;
 
16
        struct kc_file *files;
 
17
};
 
18
 
 
19
extern struct kc_elf *kc_elf_new(const char *filename);
 
20
 
 
21
extern void kc_elf_add_file(struct kc_elf *elf, struct kc_file *file);
 
22
 
 
23
#endif