about summary refs log tree commit diff
path: root/sourcecodes/k-best/src/files.h
blob: f11dd09e09e27dd2b200fa30590330a5f04edc54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __FILES_H__
#define __FILES_H__

#include <stdio.h>

int    nof_lines(char* filename);
char*  create_fn(char* dirname, int i, char* ext);
FILE*  open_file(char* dirname, int i, char* ext, char* mode);
FILE** open_files(int nof_vars, char* dirname, char* ext, char* mode);
void   free_files(int nof_vars, FILE** files);

#endif