blob: b2ad856b91b1c315a933285d5dfc7286f6480e65 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*
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
9#ifndef PLATFORM_H
10#define PLATFORM_H
11
12#include "includes.h"
13#include "common.h"
14
15#define get_unaligned_le16(p) WPA_GET_LE16((void *) (p))
16#define get_unaligned_le32(p) WPA_GET_LE32((void *) (p))
17
18#endif /* PLATFORM_H */