unused-css.c 463 B

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