Advertisement
rabin9596

abc

Apr 5th, 2020
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. // Rabindra Yadav 1001733634
  2. #ifndef _DRAWTOOL_H
  3. #define _DRAWTOOL_H
  4. #define Max_Size 20
  5.  
  6. void initializeMap(char array[][Max_Size], int *user_size);
  7. void printInstructions();
  8. void printMap(char array[][Max_Size], int *user_size);
  9. void drawLines(char array[][Max_Size], int row, int column, char draw_command, int number_of_spot, char symbol);
  10.  
  11. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement