Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

types.h

Blame
  • types.h 761 B
    /**********************************************************************
     * Copyright (c) 2020
     *  Sang-Hoon Kim <sanghoonkim@ajou.ac.kr>
     *
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License version 2 as
     * published by the Free Software Foundation.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTIABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
     * GNU General Public License for more details.
     *
     **********************************************************************/
    
    #ifndef __TYPES_H__
    #define __TYPES_H__
    
    typedef unsigned char bool;
    #define true	1
    #define false	0
    
    #endif