00001
00002
00003
00004
00005
00006 #ifndef MP1_FUNCTIONS_H__
00007 #define MP1_FUNCTIONS_H__
00008
00009 void first_step(int value);
00010 void second_step(int *value);
00011 void double_step(int **value);
00012 void strange_step(int *value);
00013 void empty_step(void *value);
00014 void two_step(void *s, char *s2);
00015 void three_step(char *first, char *second, char *third);
00016 void step_step_step(char *first, char *second, char *third);
00017 void it_may_be_odd(char *a, int b);
00018 void the_end(void *orange, void *blue);
00019
00020 #endif