mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
88a7ab5f95
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5721 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
29 lines
608 B
C
29 lines
608 B
C
#ifndef WSPRSIM_UTILS_H
|
|
#define WSPRSIM_UTILS_H
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
|
|
extern int printdata;
|
|
|
|
char get_locator_character_code(char ch);
|
|
|
|
char get_callsign_character_code(char ch);
|
|
|
|
long unsigned int pack_grid4_power(char *grid4, int power);
|
|
|
|
long unsigned int pack_call(char *callsign);
|
|
|
|
void pack_prefix(char *callsign, int32_t *n, int32_t *m, int32_t *nadd );
|
|
|
|
void interleave(unsigned char *sym);
|
|
|
|
int get_wspr_channel_symbols(char* message, char* hashtab, unsigned char* symbols);
|
|
|
|
#endif
|