1bb9dafe39
FossilOrigin-Name: f1def5fc963f9b5be6fdc11b12615815662405568b3ff991317983ad1a747523
19 lines
330 B
C
19 lines
330 B
C
/*
|
|
* Licensed under BSD 2-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 */
|