Advertisement
Guest User

title_parser.h

a guest
Dec 20th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. #ifndef TITLE_PARSER_H
  2. #define TITLE_PARSER_H
  3. #include <stdlib.h>
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <ctype.h>
  7. #include <curl/curl.h>
  8. #include <regex.h>
  9.  
  10. char *parse_title(char *);
  11. static char *get_file_contents(char *);
  12. static int download_web_page(char *);
  13.  
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement