You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
298 B

2 years ago
#include "agi_c.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
int main(int argc, char **argv){
fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK);
s_agi_parameter *param_agi = NULL;
param_agi = ast_agi();
agi_verbose_all_param(param_agi);
return 0;
}