web_crawler_alloc.h 385 B

1234567891011121314
  1. #ifndef WEB_CRAWLER_I_H
  2. #define WEB_CRAWLER_I_H
  3. #include <web_crawler.h>
  4. #include <callback/web_crawler_callback.h>
  5. #include <flip_storage/web_crawler_storage.h>
  6. /**
  7. * @brief Function to allocate resources for the WebCrawlerApp.
  8. * @return Pointer to the initialized WebCrawlerApp, or NULL on failure.
  9. */
  10. WebCrawlerApp *web_crawler_app_alloc();
  11. #endif // WEB_CRAWLER_I_H