Advertisement
2607

cat_s21_cat.h

Dec 5th, 2021
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #ifndef SRC_CAT_S21_CAT_H_
  2. #define SRC_CAT_S21_CAT_H_
  3.  
  4. #define CAT "s21_cat"
  5. #define WIDTH 6
  6.  
  7. struct opts {
  8.     int b;
  9.     int e;
  10.     int n;
  11.     int s;
  12.     int t;
  13.     int v;
  14. };
  15.  
  16. int output(const char* cat_file, struct opts cat_opt);
  17.  
  18. #endif  // SRC_CAT_S21_CAT_H_
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement