Skip to content

Commit

Permalink
0-putchar.c
Browse files Browse the repository at this point in the history
  • Loading branch information
victorpreston committed Jun 20, 2023
1 parent 98fbb69 commit 5530b11
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 0 deletions.
Binary file added 0x02-functions_nested_loops/0-putchar
Binary file not shown.
16 changes: 16 additions & 0 deletions 0x02-functions_nested_loops/0-putchar.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
/**
* main - Entry point
*
* Return: Always 0 (success)
*/

int main(void)
{

printf("_putchar\n");

return (0);
}
1 change: 1 addition & 0 deletions 0x02-functions_nested_loops/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x02-functions_nested_loops
16 changes: 16 additions & 0 deletions 0x02-functions_nested_loops/main.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#ifndef main_h
#define main_h
extern int _putchar(char c);
extern void print_alphabet(void);
extern void print_alphabet_x10(void);
extern int _islower(int c);
extern int _isalpha(int c);
extern int print_sign(int n);
extern int _abs(int);
extern int print_last_digit(int);
extern void jack_bauer(void);
extern void times_table(void);
extern int add(int, int);
extern void print_to_98(int n);
extern void print_times_table(int n);
#endif

0 comments on commit 5530b11

Please sign in to comment.