Forgotten

This commit is contained in:
XANTRONIX Development 2015-07-24 09:08:08 +00:00 committed by XANTRONIX Industrial
parent 64ec8a8e5a
commit b17a1b502d

View file

@ -0,0 +1,19 @@
#ifndef _PATTY_AX25_ADDRESS_H
#define _PATTY_AX25_ADDRESS_H
#include <stdint.h>
#include <sys/types.h>
typedef struct _patty_ax25_address {
char callsign[7];
int ssid;
int last;
union {
int c;
int repeated;
};
} patty_ax25_address;
#endif /* _PATTY_AX25_ADDRESS_H */