Initial import

This commit is contained in:
Mario Danic
2006-08-15 20:37:04 +00:00
commit 2f2c115e08
96 changed files with 15010 additions and 0 deletions

19
libisofs/errors.h Executable file
View File

@@ -0,0 +1,19 @@
/* -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 8; -*- */
#ifndef __ERRORS
#define __ERRORS
enum iso_warnings
{
ISO_WARNING_FOO
};
enum iso_errors
{
ISO_ERROR_FOO
};
void iso_warn(enum iso_warnings w);
void iso_error(enum iso_errors e);
#endif /* __ERRORS */