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
|
Description: fix missing function declarations.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066633
Forwarded: no
Last-Update: 2024-03-13
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- poa.orig/default.h
+++ poa/default.h
@@ -112,6 +112,7 @@
#define STRINGPTR_BUFFER_CHUNK 4096
#define STRINGPTR_EMPTY_INIT {NULL,0}
+char *stringptr_cat_pos(stringptr *s1,const char s2[],int *pos);
char *stringptr_cat(stringptr *s1,const char s2[]);
char *stringptr_cpy(stringptr *s1,const char s2[]);
int stringptr_free(stringptr *s);
--- poa.orig/lpo.h
+++ poa/lpo.h
@@ -54,6 +54,11 @@
void free_lpo_sequence(LPOSequence_T *seq,int please_free_holder);
+void fuse_ring_identities(int len_x,LPOLetter_T seq_x[],
+ int len_y,LPOLetter_T seq_y[],
+ LPOLetterRef_T al_x[],
+ LPOLetterRef_T al_y[]);
+
int add_path_sequence(int path_length,
LPOLetterRef_T path[],
LPOSequence_T *seq,
--- poa.orig/msa_format.h
+++ poa/msa_format.h
@@ -25,6 +25,8 @@
msa_file_format;
+void build_seq_to_po_index(LPOSequence_T *seq);
+
/** Reads an MSA from a file (cf. read_msa_select).
*/
LPOSequence_T *read_msa (FILE *ifile, msa_file_format format,
|