about summary refs log tree commit diff
path: root/sourcecodes/k-best/src/files.h
diff options
context:
space:
mode:
authorziejd22021-03-02 11:17:06 -0600
committerGitHub2021-03-02 11:17:06 -0600
commit33c4b9f23a53daed3b0a97114d7658015da6a07f (patch)
tree3ed43fec4c313b81d5586a3a2969bcbe33297b6d /sourcecodes/k-best/src/files.h
parentb798acc788139830c427769c1b8a5ade717d8c20 (diff)
downloadBNW-33c4b9f23a53daed3b0a97114d7658015da6a07f.tar.gz
Delete sourcecodes/k-best directory
Diffstat (limited to 'sourcecodes/k-best/src/files.h')
-rw-r--r--sourcecodes/k-best/src/files.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/sourcecodes/k-best/src/files.h b/sourcecodes/k-best/src/files.h
deleted file mode 100644
index f11dd09e..00000000
--- a/sourcecodes/k-best/src/files.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#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