-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
JennyHadir
committed
Oct 30, 2020
1 parent
56ac7fa
commit 7130b7e
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#include "holberton.h" | ||
#include <stdlib.h> | ||
|
||
/** | ||
* print_p - Print an adress. | ||
* @arg: String address. | ||
* Return: integer. | ||
*/ | ||
int print_p(va_list arg) | ||
{ | ||
char *str = va_arg(arg, char *); | ||
int i = 0; | ||
|
||
if (str == NULL) | ||
str = "(null)"; | ||
for (; str[i]; i++) | ||
_putchar(str[i]); | ||
return (i); | ||
} |