##// END OF EJS Templates

File last commit:

r20:21
r23:24
Show More
ABS_Client_Test.c
27 lines | 451 B | text/x-c | CLexer
/*
* ABS_Client_Test.c
*
* Created on: Set, 2012
* Author: Christiane Dietrich.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "./Librerias/Mensajes.h"
#include "./Librerias/Funciones_ControlER.h"
int main(int argc, char *argv[]){
char *header = argv[1];
char *tx = argv[2];
char *rx = argv[3];
char *cmd = argv[4];
char *val = argv[5];
ABS_Client(header, tx, rx, cmd, val);
return 0;
}