/* * recenteditor_data.c * * A programmers editor * * Tests (ensure correct functionality of modules) * * Author: Dario Rodriguez dario@softhome.net * This program is licensed under the terms of GNU GPL v2.1+ */ #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <limits.h> #include "recenteditor_data.h" int main(int argc, char *argv[]) { redata_t *redata; if((redata=redata_init())==NULL) { fprintf(stderr,"ERROR: problem initializong redata module\n"); return(1); } #warning TODO redata_free(redata),redata=NULL; }