ZE-Standard-Libraries/type/type.h

22 lines
286 B
C
Raw Normal View History

2018-07-23 04:59:16 +00:00
//
// type.h
// ZE-Standard-Libraries
//
// Created by 胡一兵 on 2018/7/23.
// Copyright © 2018年 ZE. All rights reserved.
//
#ifndef type_h
#define type_h
#define VOID 0
#define INT 1
#define DOUBLE 2
#define STRING 3
#define POINTER 4
#define LIST 5
#endif /* type_h */