-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathman_3_printf
More file actions
46 lines (38 loc) · 890 Bytes
/
Copy pathman_3_printf
File metadata and controls
46 lines (38 loc) · 890 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.TH Our function _printf
.SH NAME
.B _printf
\- format and print data in the standard output.
.SH SYNOPSIS
.B \_printf
.RB FORMAT
.RB [\| ARGUMENTS \|]
.RB OPTIONS
.SH DESCRIPTION
.B _printf
Print ARGUMENT(s) according to FORMAT, or execute according to OPTION.
.PP
Interpreted sequences are:
.RS
.nf
% ARGUMENT
%c For print a single character
%s For print a string of characters
%d For print a decimal (base 10) number
%i For print an integer a base 10 number
%% For print a sing
%r For print the reversed string
.SH AUTHOR
.PP
Written by Vincent Opurum and Ichebadu Chukwu.
.SH COPYRIGHT
.PP
Copyright © 2022
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
.SH CREDITS
.PP
This man page is created only for educational purpose by
Vincent Opurum and Ichebadu Chukwu.
.SH
.PP
October 2022 _printf(1)