Merge pull request #73 from BotondBaranyi/master
[deliverable/titan.core.git] / repgen / repgen.h
CommitLineData
d44e3c4f 1/******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Balasko, Jeno
10 * Szabo, Janos Zoltan – initial implementation
11 * Zalanyi, Balazs Andor
12 *
13 ******************************************************************************/
970ed795
EL
14#ifndef REPGEN_H
15#define REPGEN_H
16
17#define MAXLEN 2048
18
19struct listentry
20 {
21 char tcname[MAXLEN];
22 struct listentry *next;
23 };
24
25
26int WriteCode ( struct listentry *first, char *code_srcdir, char *code_dstdir, int tablen, int fillcol );
27int WriteLog ( struct listentry *first, char *log_srcdir, char *log_dstdir );
28int WriteDump ( struct listentry *first, char *dump_srcdir, char *dump_dstdir, int tablen, int fillcol );
29int WriteDump ( struct listentry *first, char *dump_srcdir, char *dump_dstdir, int tablen, int fillcol );
30int Genhtml ( struct listentry *first, char *title, char *data_dstdir );
31
32
33#endif /* REPGEN_H */
This page took 0.024859 seconds and 5 git commands to generate.