Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
renaming C functions
  • Loading branch information
grondilu committed Mar 2, 2013
1 parent 52eed22 commit c3a73c8
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Binary file removed rosalind/lcs.o
Binary file not shown.
Binary file removed rosalind/lcs.so
Binary file not shown.
6 changes: 3 additions & 3 deletions rosalind/lcs.c → rosalind/lcsq.c
Expand Up @@ -4,12 +4,12 @@

#define MAX(A,B) (((A)>(B))? (A) : (B))

char * lcs(const char *a,const char * b) {
char * lcsq(const char *a,const char * b) {
int lena = strlen(a)+1;
int lenb = strlen(b)+1;

int bufrlen = 40;
char bufr[40], *result;
int bufrlen = 1024;
char bufr[bufrlen], *result;

int i,j;
const char *x, *y;
Expand Down
Binary file added rosalind/lcsq.o
Binary file not shown.
Binary file added rosalind/lcsq.so
Binary file not shown.

0 comments on commit c3a73c8

Please sign in to comment.