/usr/include/gretl/printout.h is in libgretl1-dev 2016d-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | /*
* gretl -- Gnu Regression, Econometrics and Time-series Library
* Copyright (C) 2001 Allin Cottrell and Riccardo "Jack" Lucchetti
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* printout.h for gretl */
#define GRETL_DIGITS 6
#define GRETL_MP_DIGITS 12
#define NAMETRUNC 18
void session_time (PRN *prn);
void logo (int quiet);
void lib_logo (void);
void gui_script_logo (PRN *prn);
void gui_logo (PRN *prn);
void text_print_model_confints (const CoeffIntervals *cf, PRN *prn);
void print_freq (const FreqDist *freq, int varno, const DATASET *dset,
PRN *prn);
void print_freq_test (const FreqDist *freq, PRN *prn);
void print_xtab (const Xtab *tab, const DATASET *dset,
gretlopt opt, PRN *prn);
void print_smpl (const DATASET *dset,
int fulln, PRN *prn);
void
print_contemp_covariance_matrix (const gretl_matrix *m,
double ldet, PRN *prn);
int outcovmx (MODEL *pmod, const DATASET *dset, PRN *prn);
int max_obs_marker_length (const DATASET *dset);
void print_obs_marker (int t, const DATASET *dset, int len, PRN *prn);
char *maybe_trim_varname (char *targ, const char *src);
int max_namelen_in_list (const int *list, const DATASET *dset);
void list_series (const DATASET *dset, PRN *prn);
void maybe_list_series (const DATASET *dset, PRN *prn);
int printdata (const int *list, const char *mstr,
const DATASET *dset,
gretlopt opt, PRN *prn);
int print_data_in_columns (const int *list, const int *obsvec,
const DATASET *dset, gretlopt opt,
PRN *prn);
int print_series_with_format (const int *list,
const DATASET *dset,
char fmt, int digits, PRN *prn);
int text_print_fit_resid (const FITRESID *fr,
const DATASET *dset,
PRN *prn);
int print_fit_resid (const MODEL *pmod,
const DATASET *dset,
PRN *prn);
int text_print_forecast (const FITRESID *fr, DATASET *dset,
gretlopt opt, PRN *prn);
void print_iter_info (int iter, double crit, int type, int k,
const double *b, const double *g,
double sl, PRN *prn);
void text_print_vmatrix (VMatrix *vmat, PRN *prn);
void gretl_sprint_fullwidth_double (double x, int digits, char *targ, PRN *prn);
void gretl_print_fullwidth_double (double x, int digits, PRN *prn);
void gretl_print_value (double x, PRN *prn);
char *gretl_fix_exponent (char *s);
void bufspace (int n, PRN *prn);
void print_centered (const char *s, int width, PRN *prn);
void gretl_printxn (double x, int n, PRN *prn);
int in_usa (void);
char *bufgets (char *s, size_t size, const char *buf);
size_t bufgets_peek_line_length (const char *buf);
int bufgets_init (const char *buf);
int query_bufgets_init (const char *buf);
void bufgets_finalize (const char *buf);
void buf_rewind (const char *buf);
int bufseek (const char *buf, long int offset);
long buftell (const char *buf);
void bufgets_cleanup (void);
|