Nothing to see here
This commit is contained in:
12
_putchar.c
Normal file
12
_putchar.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "main.h"
|
||||
|
||||
/**
|
||||
* _putchar - print character
|
||||
* @c: character
|
||||
*
|
||||
* Return: 1 idk
|
||||
*/
|
||||
int _putchar(char c)
|
||||
{
|
||||
return (write(1, &c, 1));
|
||||
}
|
||||
Reference in New Issue
Block a user