-
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
90da937
commit 520d1c9
Showing
2 changed files
with
8 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
#ifndef _FUNCTION_POINTERS_H_ | ||
#define _FUNCTION_POINTERS_H_ | ||
|
||
#include <stddef.h> | ||
|
||
int _putchar(char c); | ||
void print_name(char *name, void (*f)(char *)); | ||
void array_iterator(int *array, size_t size, void (*action)(int)); | ||
int int_index(int *array, int size, int (*cmp)(int)); | ||
|
||
#endif /* _FUNCTION_POINTERS_H_ */ |
This file was deleted.
Oops, something went wrong.