#ifndef CONSUMER_H #define CONSUMER_H void* Consumer(void* arg); void consume_item(long int item); long int remove_item(void); #endif