-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathman_3_printf
More file actions
32 lines (25 loc) · 755 Bytes
/
man_3_printf
File metadata and controls
32 lines (25 loc) · 755 Bytes
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
28
29
30
31
32
.TH _printf 3 "October 24 2017" "v1" "_printf Manual"
.SH NAME
_printf - A function that simulates the C standard library function printf.
.SH SYNOPSIS
.B _printf
.I FORMAT [ARGUMENT]
.B ...
.SH DESCRIPTION
Print ARGUMENT(s) according to FORMAT with ARGUMENT(s) converted to proper type first.
FORMAT controls the output. Interpreted sequences are:
.B %c
- Displays a character
.B %s
- Displays a string of characters
.B %d
- Displays an integer in decimal form
.B %i
- Displays an integer in decimal form
.B %%
- Displays a single '%' character
Note: _printf requires the corresponding holberton.h header file for use.
.SH AUTHORS
Sid Carroll & Cam Moore
.SH REPORTING BUGS
Report _printf bugs to Sid Carroll and/or Cam Moore at Holberton School.