-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.h
27 lines (24 loc) · 1.03 KB
/
help.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* =======================================================================================
*
* Filename: help.h
* Description: Help of the program
* Compiler: gcc
* Author: Simon L. J. Robin | https://sljrobin.org
* Created: 2015-04-30 10:38:33
* Modified: 2016-02-13 13:42:55
*
* =======================================================================================
*/
#ifndef _ROSNLIB_HELP_H_
#define _ROSNLIB_HELP_H_
void rosn_utils_help_args(void); /* Print help for Arguments */
void rosn_utils_help_arp(void); /* Print help for ARP */
void rosn_utils_help_eth(void); /* Print help for Ethernet protocol */
void rosn_utils_help_full(void); /* Print full help */
void rosn_utils_help_icmp(void); /* Print help for ICMP */
void rosn_utils_help_ipv4(void); /* Print help for IPv4 */
void rosn_utils_help_ipv6(void); /* Print help for IPv6 */
void rosn_utils_help_tcp(void); /* Print help for TCP */
void rosn_utils_help_udp(void); /* Print help for UDP */
#endif