init commit

This commit is contained in:
2026-06-22 11:39:50 +03:00
commit ba6f1bde22
128 changed files with 17716 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
/* Portable C version of peakval
* Copyright 2004 Phil Karn, KA9Q
*/
#include <stdlib.h>
#include "fec.h"
int peakval_port(signed short *b,int len){
int peak = 0;
int a,i;
for(i=0;i<len;i++){
a = abs(b[i]);
if(a > peak)
peak = a;
}
return peak;
}