Blame


1 1066c216 2023-07-02 op /*
2 1066c216 2023-07-02 op * Copyright (c) 2023 Omar Polo <op@omarpolo.com>
3 1066c216 2023-07-02 op *
4 1066c216 2023-07-02 op * Permission to use, copy, modify, and distribute this software for any
5 1066c216 2023-07-02 op * purpose with or without fee is hereby granted, provided that the above
6 1066c216 2023-07-02 op * copyright notice and this permission notice appear in all copies.
7 1066c216 2023-07-02 op *
8 1066c216 2023-07-02 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 1066c216 2023-07-02 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 1066c216 2023-07-02 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 1066c216 2023-07-02 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 1066c216 2023-07-02 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 1066c216 2023-07-02 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 1066c216 2023-07-02 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 1066c216 2023-07-02 op */
16 1066c216 2023-07-02 op
17 1066c216 2023-07-02 op #include <machine/endian.h>
18 1066c216 2023-07-02 op #include <libkern/OSByteOrder.h>
19 1066c216 2023-07-02 op #include <stdint.h>
20 1066c216 2023-07-02 op
21 1066c216 2023-07-02 op int
22 1066c216 2023-07-02 op main(void)
23 1066c216 2023-07-02 op {
24 1066c216 2023-07-02 op uint16_t x;
25 1066c216 2023-07-02 op
26 1066c216 2023-07-02 op x = 42;
27 1066c216 2023-07-02 op return (OSSwapHostToBigInt16(x));
28 1066c216 2023-07-02 op }