Created
November 21, 2018 06:08
-
-
Save alastairparagas/1b5efd945a955812e542a26f20f73bce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // return 1 if the file name is illegal; otherwise, return 0; legal | |
| // characters for a file name include letters (case sensitive), | |
| // numbers, dots, dashes, and underscores; and a legal file name | |
| // should not be more than MAX_NAME-1 in length | |
| static int illegal_filename(char* name) | |
| { | |
| /* YOUR CODE */ | |
| return 1; | |
| } |
cesiabulnes
commented
Nov 21, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment