Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
EphraimTM299 committed Jan 20, 2023
1 parent 90da937 commit 520d1c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 8 additions & 0 deletions 0x0F-function_pointers/function_pointers.h
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_ */
3 changes: 0 additions & 3 deletions 0x0F-function_pointers/main.h

This file was deleted.

0 comments on commit 520d1c9

Please sign in to comment.