besched: Use sched_foreach_{after,reverse_before}().
[libfirm] / ir / adt / fourcc.h
index f8bc5ff..cf2f3de 100644 (file)
@@ -1,24 +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
 
-#include "firm_config.h"
+/**
+ * @file
+ * @brief       Define the famous infame FOURCC macro.
+ * @date        02.01.2004
+ */
+#ifndef FIRM_ADT_FOURCC_H
+#define FIRM_ADT_FOURCC_H
 
-/* define an always readable fourcc code */
-#ifdef WORDS_BIGENDIAN
-#define FOURCC(a,b,c,d)         ((d) | ((c) << 8) | ((b) << 16) | ((a) << 24))
-#else
+/** define a readable fourcc code */
 #define FOURCC(a,b,c,d)         ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
-#endif
 
-#endif /* _FOURCC_H */
+#endif