Changeset 52 for sources/src/sc_nbdefs.h


Ignore:
Timestamp:
Jan 22, 2013, 4:23:22 PM (11 years ago)
Author:
meunier
Message:

Code formatting in all source files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/src/sc_nbdefs.h

    r1 r52  
    1010|                                                             |
    1111\------------------------------------------------------------*/
     12
    1213#ifndef __SC_DEFS_H__
    1314#define __SC_DEFS_H__
    1415
    1516#ifndef WIN32
    16 typedef signed long long   int64;
     17typedef signed long long int64;
    1718typedef unsigned long long uint64;
    1819#else
    19 typedef signed __int64     int64;
    20 typedef unsigned __int64   uint64;
     20typedef signed __int64 int64;
     21typedef unsigned __int64 uint64;
    2122#endif
    2223
    23 typedef long           int32;
     24typedef long  int32;
     25typedef short int16;
     26typedef char  int8;
    2427typedef unsigned long  uint32;
    25 typedef short          int16;
    2628typedef unsigned short uint16;
    27 typedef char           int8;
    2829typedef unsigned char  uint8;
    2930
    30 typedef uint16         smallest_uint;
    31 typedef int16          smallest_int;
     31typedef uint16 smallest_uint;
     32typedef int16  smallest_int;
    3233
    3334#endif
     35
     36/*
     37# Local Variables:
     38# tab-width: 4;
     39# c-basic-offset: 4;
     40# c-file-offsets:((innamespace . 0)(inline-open . 0));
     41# indent-tabs-mode: nil;
     42# End:
     43#
     44# vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
     45*/
     46
Note: See TracChangeset for help on using the changeset viewer.