blob: 26f47ff046acd612082a8c1ae8b6e87e8544af80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/***
DebuggerKit
(C) 2025 Amlal El Mahrouss, licensed under Apache-2.0.
File: Platform.h
Purpose: NeCTI Debugger Platform headers.
*/
#pragma once
/// =========================================================== ///
/// @author Amlal El Mahrouss
/// =========================================================== ///
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h>
#include <unistd.h>
|