Codebase list dillo / 4263e106-de5f-41e0-9767-00b4c11c68d2/main src / domain.h
4263e106-de5f-41e0-9767-00b4c11c68d2/main

Tree @4263e106-de5f-41e0-9767-00b4c11c68d2/main (Download .tar.gz)

domain.h @4263e106-de5f-41e0-9767-00b4c11c68d2/mainraw · history · blame

#ifndef __DOMAIN_H__
#define __DOMAIN_H__

#ifdef __cplusplus
extern "C" {
#endif

#include <stdio.h>
#include "url.h"

void a_Domain_parse(FILE *fp);
void a_Domain_freeall(void);
bool_t a_Domain_permit(const DilloUrl *source, const DilloUrl *dest);

#ifdef __cplusplus
}
#endif

#endif