mastodont-c/include/mastodont_uri.h
nekobit 0e269a0eeb Fix usage of angled -> quoted includes
FossilOrigin-Name: 9502a0fe3ad469cda46ab0835779eaa82a48533a3102d84388bd571ba7093eb5
2022-12-24 21:36:11 +00:00

19 lines
330 B
C

/*
* Licensed under BSD 3-Clause License
*/
#ifndef MASTODONT_URI_H
#define MASTODONT_URI_H
#include "mastodont_types.h"
#include <stddef.h>
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 */