Sync with 5.1.0
[deliverable/titan.core.git] / repgen / repgen.h
CommitLineData
970ed795
EL
1///////////////////////////////////////////////////////////////////////////////
2// Copyright (c) 2000-2014 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#ifndef REPGEN_H
9#define REPGEN_H
10
11#define MAXLEN 2048
12
13struct listentry
14 {
15 char tcname[MAXLEN];
16 struct listentry *next;
17 };
18
19
20int WriteCode ( struct listentry *first, char *code_srcdir, char *code_dstdir, int tablen, int fillcol );
21int WriteLog ( struct listentry *first, char *log_srcdir, char *log_dstdir );
22int WriteDump ( struct listentry *first, char *dump_srcdir, char *dump_dstdir, int tablen, int fillcol );
23int WriteDump ( struct listentry *first, char *dump_srcdir, char *dump_dstdir, int tablen, int fillcol );
24int Genhtml ( struct listentry *first, char *title, char *data_dstdir );
25
26
27#endif /* REPGEN_H */
This page took 0.024816 seconds and 5 git commands to generate.