diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-02-14 15:56:38 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-02-14 16:01:37 +0100 |
commit | 390811ec32742d4af2a48fe265b506185e01b7f4 (patch) | |
tree | 9d79e089d5274498b7b4117f870889e5ff0a027f /etisnoop/firecode.h | |
parent | 0b821b5b63a1cbe2f7780a1312eb98473e220d55 (diff) | |
download | mmbtools-aux-390811ec32742d4af2a48fe265b506185e01b7f4.tar.gz mmbtools-aux-390811ec32742d4af2a48fe265b506185e01b7f4.tar.bz2 mmbtools-aux-390811ec32742d4af2a48fe265b506185e01b7f4.zip |
Remove etisnoop
Diffstat (limited to 'etisnoop/firecode.h')
-rw-r--r-- | etisnoop/firecode.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/etisnoop/firecode.h b/etisnoop/firecode.h deleted file mode 100644 index 735a302..0000000 --- a/etisnoop/firecode.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - Copyright (C) 2014 Matthias P. Braendli (http://www.opendigitalradio.org) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - 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 this program. If not, see <http://www.gnu.org/licenses/>. - - firecode.c - Implement a FireCode CRC calculator - - Authors: - Matthias P. Braendli <matthias@mpb.li> -*/ - -#ifndef _FIRECODE_H_ -#define _FIRECODE_H_ - -#include <stdint.h> -#include <stdlib.h> - -uint16_t firecode_crc(uint8_t* buf, size_t size); - -#endif - |