becopyheur4: Clean up co_mst_irn_init().
[libfirm] / ir / adt / fourcc.h
index 3d04f7a..cf2f3de 100644 (file)
@@ -1,17 +1,17 @@
 /*
- * Project:     libFIRM
- * File name:   ir/adt/fourcc.h
- * Purpose:     define the famous infame FOURCC macro.
- * Author:
- * Modified by:
- * Created:     02.01.2004
- * CVS-ID:      $Id$
- * Copyright:   (C) 2004 University of Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * This file is part of libFirm.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
-#ifndef _FOURCC_H
-#define _FOURCC_H
 
+/**
+ * @file
+ * @brief       Define the famous infame FOURCC macro.
+ * @date        02.01.2004
+ */
+#ifndef FIRM_ADT_FOURCC_H
+#define FIRM_ADT_FOURCC_H
+
+/** define a readable fourcc code */
 #define FOURCC(a,b,c,d)         ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
 
-#endif /* _FOURCC_H */
+#endif