-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc_usage.c
19 lines (17 loc) · 1020 Bytes
/
c_usage.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* c_usage.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cnathana <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/02/07 15:15:52 by cnathana #+# #+# */
/* Updated: 2014/02/07 15:17:13 by cnathana ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int print_usage(void)
{
ft_putendl_fd("usage: ./client <server_pid> <string to send>", 2);
return (2);
}