12345678910111213141516171819202122 |
- /**
- ** used-css displays the unused css classes your web project has. It exists
- ** to aid you in removing unused css.
- ** It accepts two inputs: the base of your project.
- ** And a list/s of css files.
- **
- */
- #include <stdio.h>
- #include <string.h>
- /* filename is a pointer! */
- const char filename [] = "/home/joshua/programming/c/dumb.h";
- /* open_type is a pointer! */
- int
- main (int argc, char *argv[]) {
- FILE *fp = fopen (filename, "r");
- return 0;
- }
|