/* * Licensed under BSD 3-Clause License */ #ifndef MASTODONT_URI_H #define MASTODONT_URI_H #include #include struct mstdnt_uri { char* user; char* domain; char storage[MSTDNT_URISIZE]; }; struct mstdnt_uri mstdnt_uristr_to_uri(char* uri, size_t len); #endif /* MASTODONT_URI_H */