1 /* 2 * Copyright (C) 2010-2014 NXP Semiconductors 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef PHESETYPES_H 18 #define PHESETYPES_H 19 #include <stdint.h> 20 #include <string.h> 21 #include <stdio.h> 22 #include <stdlib.h> 23 #include <unistd.h> 24 #ifndef TRUE 25 #define TRUE (0x01) /* Logical True Value */ 26 #endif 27 #ifndef FALSE 28 #define FALSE (0x00) /* Logical False Value */ 29 #endif 30 // typedef uint8_t utf8_t; /* UTF8 Character String */ 31 // typedef uint8_t bool_t; /* boolean data type */ 32 typedef uint16_t ESESTATUS; /* Return values */ 33 #define STATIC static 34 35 #endif /* PHESETYPES_H */ 36