0e269a0eeb
FossilOrigin-Name: 9502a0fe3ad469cda46ab0835779eaa82a48533a3102d84388bd571ba7093eb5
19 lines
330 B
C
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 */
|