75e44be3b3e5fcba25b018fdc5b1c628ce7fbbfa
[deliverable/titan.core.git] / repgen.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Copyright (c) 2000-2015 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
13 struct listentry
14 {
15 char tcname[MAXLEN];
16 struct listentry *next;
17 };
18
19
20 int WriteCode ( struct listentry *first, char *code_srcdir, char *code_dstdir, int tablen, int fillcol );
21 int WriteLog ( struct listentry *first, char *log_srcdir, char *log_dstdir );
22 int WriteDump ( struct listentry *first, char *dump_srcdir, char *dump_dstdir, int tablen, int fillcol );
23 int WriteDump ( struct listentry *first, char *dump_srcdir, char *dump_dstdir, int tablen, int fillcol );
24 int Genhtml ( struct listentry *first, char *title, char *data_dstdir );
25
26
27 #endif /* REPGEN_H */
This page took 0.030392 seconds and 4 git commands to generate.