api.h

← Back to explorer
include/api.h
#ifndef API_H
#define API_H

#include "weather.h"

#define ZOM_WEATHER "https://www.weatherunion.com/gw/weather/external/v0"

int fetch_by_coordinates(double latitude,double longitude, const char *API_KEY, ZomWeather *API_RESPONSE);
int fetch_b_locality(const char *localityID, const char *API_KEY, ZomWeather *API_RESPONSE);

#endif