"Fossies" - the Fresh Open Source Software Archive 
Member "statist-1.4.2/src/data.h" (9 Sep 2006, 1749 Bytes) of package /linux/privat/old/statist-1.4.2.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "data.h" see the
Fossies "Dox" file reference documentation.
1 /* This file is part of statist
2 **
3 ** It is distributed under the GNU General Public License.
4 ** See the file COPYING for details.
5 **
6 **
7 ** (c) 1997 Dirk Melcher
8 ** Doerper Damm 4
9 ** 49134 Wallenhorst
10 ** GERMANY
11 ** Tel. 05407/7636
12 ** email: Dirk.Melcher@usf.Uni-Osnabrueck.DE
13 **
14 ** some changes by Bernhard Reiter http://www.usf.Uni-Osnabrueck.DE/~breiter
15 ** $Id: data.h,v 1.16 2006/09/09 18:12:38 jakson Exp $
16 ***************************************************************/
17
18 /* data.h for STATIST */
19 #include <stdio.h>
20
21 extern int getcols(int min, int max, BOOLEAN eraserow);
22 extern void alloc_cols(int n_alloc, BOOLEAN eraserow);
23 extern PREAL readcol(int i);
24 extern void readsourcefile();
25 extern void read_labels(char *labelsfile);
26 extern void attach_labels_to_columns();
27 extern void newsourcefile();
28 extern void create_columns(int amount);
29 extern void delete_last_columns(int i);
30 extern void erasetempfiles();
31 extern int parsecomment(const char *comment, BOOLEAN is_comment);
32 extern void printcol(REAL x[], int n);
33 extern void printcols();
34 extern BOOLEAN make_new_col(char *alias, int n);
35 extern void log_transform();
36 extern void power_10_transform();
37 extern void ln_transform();
38 extern void power_e_transform();
39
40 extern void inv_transform();
41 extern void z_transform();
42 extern void sort_col();
43 extern void readcol_from_term();
44 extern BOOLEAN str_in_str(const char *s1, const char *s2);
45 extern char *get_label(PREAL x);
46 extern char *get_name(PREAL x);
47 extern BOOLEAN emptyline(const char *s);
48 int col_exist(char *analias, BOOLEAN is_error);
49 extern void set_fileformat();
50 extern void show_file_head(char *fn);
51 void extract_sample(int argc, char * argv[]);
52 void extract_cols(int argc, char * argv[]);
53 void exp_fwdf();
54