blob: b2ad856b91b1c315a933285d5dfc7286f6480e65 [file] [log] [blame]
Hai Shalom60840252021-02-19 19:02:11 -08001/*
2 * Platform definitions for Radiotap parser
3 * Copyright (c) 2021, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07009#ifndef PLATFORM_H
10#define PLATFORM_H
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -070011
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -070012#include "includes.h"
13#include "common.h"
14
Hai Shalom60840252021-02-19 19:02:11 -080015#define get_unaligned_le16(p) WPA_GET_LE16((void *) (p))
16#define get_unaligned_le32(p) WPA_GET_LE32((void *) (p))
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -070017
18#endif /* PLATFORM_H */