-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathman_3_printf
More file actions
36 lines (30 loc) · 932 Bytes
/
man_3_printf
File metadata and controls
36 lines (30 loc) · 932 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
.\" Manpage for _printf
.TH man 8 "26 July 2021" "1.0" "_printf man page"
.SH NAME
_printf - format and write a string, character or integer to stdout
.SH SYNOPSIS
#include "holberton.h"
.br
#include <stdarg.h>
.br
#include <stdlib.h>
.br
.br
int _printf(const char *format, ...)
.SH DESCRIPTION
The function _printf() produces output according to format described below, writes output to stdout.
.SS Return value
.br
upon successful return, this function returns a number of characters
printed (excluding the null byte)
if an output error is encountered, a negative value is returned
.SS The format string
It is a character string, composed of zero or more directives, ordinary characters which are copied and unchanged to the stdout, each conversion specifier is introduced with %
.br
.SH BUGS
No known bugs
.SS colphon
.br
This page was created in collaboration with ALX-Holberton.
.SH AUTHORS
.Ayesiga Nobert and F Njakai