This repository has been archived on 2021-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
unix/mygrep/mygrep.h

8 lines
174 B
C
Raw Normal View History

#ifndef MYGREP_HEADER
#define MYGREP_HEADER
void print_usage();
void check_opts_number(int argc, char *argv[]);
void check_for_string(char *to_check, char *to_find);
#endif