dl-fldigi/src/include/pskvaricode.h

32 wiersze
1.1 KiB
C
Czysty Zwykły widok Historia

2007-06-22 22:04:50 +00:00
// ----------------------------------------------------------------------------
// varicode.h -- PSK31 Varicode
//
// Copyright (C) 2006
// Dave Freese, W1HKJ
//
// This file is part of fldigi. Adapted from code contained in gmfsk source code
// distribution.
//
// Fldigi is free software: you can redistribute it and/or modify
2007-06-22 22:04:50 +00:00
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
2007-06-22 22:04:50 +00:00
// (at your option) any later version.
//
// Fldigi is distributed in the hope that it will be useful,
2007-06-22 22:04:50 +00:00
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with fldigi. If not, see <http://www.gnu.org/licenses/>.
2007-06-22 22:04:50 +00:00
// ----------------------------------------------------------------------------
#ifndef _VARICODE_H
#define _VARICODE_H
2007-06-22 22:27:16 +00:00
extern const char *psk_varicode_encode(unsigned char c);
extern int psk_varicode_decode(unsigned int symbol);
2007-06-22 22:04:50 +00:00
#endif