if idea no work, you copy errytang))) xd

This commit is contained in:
2023-08-22 12:20:43 +03:00
parent 504376d3d0
commit f08b2ca361
2 changed files with 16 additions and 0 deletions

15
puts.c Normal file
View File

@@ -0,0 +1,15 @@
#include "main.h"
#include <unistd.h>
/**
* _puts - splurges whatever is in buffer
*
* @str: pointers to "buffer" or string head
*
* Return: Naught
*/
void _puts(char *str)
{
write(1, str, _strlen(str));
}