#define LABEL_SIZE 64 #include #include #include "Buzon.h" const char * html_labels[] = { "a", "b", "c", "d", "e", "li", "" }; int main( int argc, char ** argv ) { int i, st; Buzon m; i = 0; while ( strlen(html_labels[ i ] ) ) { st = m.Enviar( html_labels[ i ], i, 2023 ); // Send a message with 2023 type, (label,n) printf("Label: %s, status %d \n", html_labels[ i ], st ); i++; } }