- implemented -Wsign-compare
[cparser] / adt / fourcc.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/adt/fourcc.h
4  * Purpose:     define the famous infame FOURCC macro.
5  * Author:
6  * Modified by:
7  * Created:     02.01.2004
8  * CVS-ID:      $Id$
9  * Copyright:   (C) 2004 University of Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12 #ifndef _FOURCC_H
13 #define _FOURCC_H
14
15 /** define a readable fourcc code */
16 #define FOURCC(a,b,c,d)         ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
17
18 #endif /* _FOURCC_H */