File: example.h

package info (click to toggle)
eztrace-contrib 1.0.5-3
  • links: PTS, VCS
  • area: contrib
  • in suites: jessie, jessie-kfreebsd
  • size: 4,744 kB
  • ctags: 4,106
  • sloc: ansic: 24,805; sh: 11,403; perl: 1,107; makefile: 851; f90: 295; python: 57; fortran: 38
file content (17 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* -*- c-file-style: "GNU" -*- */
/*
 * Copyright (C) CNRS, INRIA, Université Bordeaux 1, Télécom SudParis
 * See COPYING in top-level directory.
 */

#ifndef __EXAMPLE_H__
#define __EXAMPLE_H__

/* dummy function #1 */
double example_function1(double*, int);

/* dummy function #2 */
int example_function2(int*, int);

double example_static_function(double *array, int array_size);
#endif	/* __EXAMPLE_H__ */