Select the types of activity you want to include in your feed.
1#ifndef FETCH_H 2#define FETCH_H 3 4#include "types.h" 5 6void init_fetch_module(void); 7int has_pending_fetches(void); 8ant_value_t ant_fetch(ant_params_t); 9 10#endif