libDXF 0.0.1
A library with DXF related functions written in C.

entities.c

Go to the documentation of this file.
00001 
00054 #include "entities.h"
00055 
00056 
00060 int
00061 dxf_entities_read_table
00062 (
00063         char *filename,
00065         FILE *fp,
00067         int line_number,
00069         char *dxf_entities_list,
00071         int acad_version_number
00073 )
00074 {
00075 #if DEBUG
00076         DXF_DEBUG_BEGIN
00077 #endif
00078 
00079 #if DEBUG
00080         DXF_DEBUG_END
00081 #endif
00082         return (EXIT_SUCCESS);
00083 }
00084 
00085 
00089 int
00090 dxf_entities_write_table
00091 (
00092         char *dxf_entities_list,
00094         int acad_version_number
00096 )
00097 {
00098 #if DEBUG
00099         DXF_DEBUG_BEGIN
00100 #endif
00101 
00102 #if DEBUG
00103         DXF_DEBUG_END
00104 #endif
00105         return (EXIT_SUCCESS);
00106 }
00107 
00108 
00109 /* EOF */