2021-02-21 12:07:38 +02:00
|
|
|
/*
|
|
|
|
* Platform definitions for Radiotap parser
|
|
|
|
* Copyright (c) 2021, Jouni Malinen <j@w1.fi>
|
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
2014-04-24 08:45:34 +03:00
|
|
|
#ifndef PLATFORM_H
|
|
|
|
#define PLATFORM_H
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
#include "common.h"
|
|
|
|
|
2021-02-21 12:07:38 +02:00
|
|
|
#define get_unaligned_le16(p) WPA_GET_LE16((void *) (p))
|
|
|
|
#define get_unaligned_le32(p) WPA_GET_LE32((void *) (p))
|
2014-04-24 08:45:34 +03:00
|
|
|
|
|
|
|
#endif /* PLATFORM_H */
|