• R/O
  • HTTP
  • SSH
  • HTTPS

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

超漢字上で、mrubyを使ってhello worldを表示させる。


File Info

Rev. 5048c78be9679f7eb7bb6e9609cb9992fb12a7d9
Tamaño 464 octetos
Tiempo 2017-06-05 23:21:02
Autor ornse01
Log Message

Merge branch 'switch_1.2'

Content

#ifndef __STDINT_H__
#define __STDINT_H__

typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long int uint64_t;
typedef char int8_t;
typedef short int16_t;
typedef int int32_t;
typedef long long int int64_t;

typedef int intptr_t;
typedef unsigned int uintptr_t;

#define UINT16_MAX (0xFFFF)
#define INT32_MAX (2147483647L)
#define INT32_MIN (-2147483647L-1)

#define SIZE_MAX (INT32_MAX)

#endif