0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-08 12:18:42 +00:00
bird/filter/filter.h
1999-01-15 18:13:55 +00:00

24 lines
368 B
C

/*
* BIRD Internet Routing Daemon -- Configuration File Handling
*
* (c) 1998 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef _BIRD_FILT_H_
#define _BIRD_FILT_H_
#include "lib/resource.h"
/* Lexer */
struct f_instruction {
int code;
void *arg1, *arg2;
};
void filters_postconfig(void);
#endif