bom.h 197 B

1234567891011
  1. #include <stdio.h>
  2. #include <string.h>
  3. #define NOBOM 0
  4. #define HASBOM 1
  5. #define ERROR 2
  6. #define SUCCESS 3
  7. int checkBOM(char *filePath);
  8. int removeBOM(char *filePath);
  9. int addBOM(char *filePath);