libbubulle/importobj.c

27 lines
497 B
C

/*
LIBBUBULLES
some functions for importing bubulles from dot-OBJ files.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bubulles.h"
/* --------------------------------------------------------------------- */
int try_to_read_an_OBJ_file(char *fname, int notused)
{
FILE *fpin;
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( '%s' %d)\n", fname, notused);
#endif
return -7800;
}
/* --------------------------------------------------------------------- */