helper.h
Go to the documentation of this file.00001 #ifndef SEQALN_HELPER_H
00002 #define SEQALN_HELPER_H
00003
00004
00005 int max(int i1, int i2, int i3) {
00006 return max(max(i1,i2),i3);
00007 }
00008 int max(int i1, int i2) {
00009 if (i1>i2) return i1;
00010 return i2;
00011 }
00012
00013 #endif