/usr/include/fml/internal.h is in libfml-dev 0.1-4.
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 | #ifndef FML_INTERNAL_H
#define FML_INTERNAL_H
#include "fml.h"
extern unsigned char seq_nt6_table[256];
#ifdef __cplusplus
extern "C" {
#endif
void kt_for(int n_threads, void (*func)(void*,long,int), void *data, long n);
void seq_reverse(int l, unsigned char *s);
void seq_revcomp6(int l, unsigned char *s);
struct bfc_ch_s *fml_count(int n, const fml_seq1_t *seq, int k, int q, int l_pre, int n_threads);
#ifdef __cplusplus
}
#endif
#endif
|