Ignore:
Timestamp:
Jan 2, 2004, 5:52:10 PM (19 years ago)
Author:
Sam Hocevar
Message:
  • src/ examples/ test/: + Changed <const type> constructs into <type const>.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/test/optipal.c

    r293 r305  
    3535
    3636/* 6 colours in hue order */
    37 static const enum caca_color hue_list[] =
     37static enum caca_color const hue_list[] =
    3838{
    3939    CACA_COLOR_RED,
     
    7676
    7777    /* Output the palette */
    78     printf("const static int slang_palette[2*16*16] =\n{\n");
     78    printf("static int const slang_palette[2*16*16] =\n{\n");
    7979    for(i = 0; i < 16 * 16; i++)
    8080    {
     
    8686
    8787    /* Output the association table */
    88     printf("const static int slang_assoc[16*16] =\n{\n");
     88    printf("static int const slang_assoc[16*16] =\n{\n");
    8989    for(i = 0; i < 16 * 16; i++)
    9090    {
Note: See TracChangeset for help on using the changeset viewer.