File: embl.h

package info (click to toggle)
squizz 0.99b%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,648 kB
  • ctags: 8,291
  • sloc: sh: 12,012; ansic: 2,607; lex: 1,944; yacc: 1,659; makefile: 119
file content (17 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* embl.h - EMBL sequence functions */

#ifndef __SEQUENCE_EMBL_H_
#define __SEQUENCE_EMBL_H_

#include <stdio.h>
#include "sequence.h"


/* Functions prototypes */

sequence_t *embl_parse(FILE *);
int embl_check(FILE *);
void embl_print(FILE *, sequence_t *);

#endif /* __SEQUENCE_EMBL_H_ */