22 lines
286 B
C
22 lines
286 B
C
//
|
|
// 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 */
|