c0ddc1bf5e
FossilOrigin-Name: 4e8cdf2538b5a6eaf91c61e3b0ae57621d0934f376351c5d3b7b320927eb27d8
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 */
|