Skip to content
Snippets Groups Projects
Select Git revision
  • 633d238cccd938e332f005e99c7411178f48e6c1
  • master default
2 results

alloc.c

Blame
  • Forked from HyukSang Kwon / 1801_OS_assignment4
    Source project has a limited visibility.
    types.h 848 B
    /**********************************************************************
     * Copyright (c) 2021-2022
     *  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
    
    #include "list_head.h"
    
    struct entry {
    	struct list_head list;
    	char *string;
    };
    
    #endif