#ifndef TDA_H #define TDA_H #include "assets.h" #include "quotes.h" extern char *tda_refresh_token; struct tda_session { char *client_id, *account_id, *access_token, *refresh_token; }; struct tda_session *tda_init(const char *, const char *, const char *); void tda_cleanup(struct tda_session *); int tda_load_assets(struct tda_session *, struct asset **assets); int tda_get_quote_symbols(struct asset **assets, int n, char **bufptr); int tda_get_quotes(struct tda_session *, const char *, struct quote ***); #endif