From: Christos Zoulas Date: Mon, 3 Nov 2008 05:34:27 +0000 (+0000) Subject: explain what this does. X-Git-Tag: FILE5_05~293 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ab9dcdab840b551287c00612697b54ab3445b6e;p=file explain what this does. --- diff --git a/src/cdf.c b/src/cdf.c index d914a446..a51c54f3 100644 --- a/src/cdf.c +++ b/src/cdf.c @@ -23,6 +23,12 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ +/* + * Parse composite document files, the format used in Microsoft Office + * document files before they switched to zipped xml. + * Info from: http://sc.openoffice.org/compdocfileformat.pdf + */ + #ifdef HAVE_CONFIG_H #include #endif @@ -52,6 +58,11 @@ #include "cdf.h" +#include "file.h" +#ifndef lint +FILE_RCSID("@(#)$File: cdf.c,v 1.11 2008/11/03 05:34:27 christos Exp $") +#endif + #ifndef __arraycount #define __arraycount(a) (sizeof(a) / sizeof(a[0])) #endif