-
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
1 parent
98fbb69
commit 5530b11
Showing
4 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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,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); | ||
} |
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 @@ | ||
0x02-functions_nested_loops |
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,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 |