mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
ba05cbf1f0
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5534 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
20 lines
393 B
C++
20 lines
393 B
C++
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <ctime>
|
|
#include <cstring>
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
char tx[6][10];
|
|
int tx_table_2hr_slot=-1, tx_table_pctx=0;
|
|
|
|
int tx_band_sum(char bsum[10]);
|
|
int tx_add_to_band(int band);
|
|
int tx_sum();
|
|
int tx_add_one(char* tx);
|
|
int tx_trim(char* tx, int ntxlim);
|
|
void tx_print();
|
|
int create_tx_schedule(int pctx);
|
|
int next_tx_state(int pctx);
|