gcc コンパイラで ANSI C を使用していますが、コードに互換性のないポインター型からの割り当てという警告が表示されます。
注: 構造体、typedef、およびポインターが提供されます。したがって、それらを変更することはできません。
#include <stdlib.h>
#include <string.h>
#include <assert.h>
typedef struct tm * tm_type_ptr;
typedef struct stock_list * stock_list_ptr;
typedef struct coin * coin_list_ptr;
typedef struct tm {
coin_list_ptr coins;
stock_list_ptr stock;
} tm_type;
struct stock_data
{
char ticket_name[TICKET_NAME_LEN+1];
char ticket_type;
char ticket_zone[TICKET_ZONE_LEN+1];
unsigned int ticket_price;
unsigned int stock_level;
};
typedef struct stock_node
{
struct stock_data * data;
struct stock_node * next_node;
} stock_node;
struct stock_list
{
stock_node * head_stock;
unsigned int num_stock_items;
};
enum coin_types {
FIVE_CENTS=5,
TEN_CENTS=10,
TWENTY_CENTS=20,
FIFTY_CENTS=50,
ONE_DOLLAR=100,
TWO_DOLLARS=200
};
struct coin {
enum coin_types denomination;
unsigned count;
};
int main(int argc, char **argv) {
tm_type tm;
tm_type *tm_ptr;
tm_ptr = &tm;
system_init(tm_ptr);
return EXIST_SUCCESS;
}
system_init(tm_type * tm)
{
struct coin clist;
struct coin_list_ptr * clist_ptr;
clist_ptr = &clist;
stock_node * snode = (stock_node *) malloc(sizeof(stock_node));
snode->data = (struct stock_data *) malloc(sizeof(struct stock_data));
struct stock_list * slist = (struct stock_list *) malloc(sizeof(struct stock_list));
stock_list_ptr * slist_ptr = (stock_list_ptr *) malloc(sizeof(stock_list_ptr));
slist->head_stock = snode;
slist_ptr = &slist;
tm = (tm_type *) malloc(sizeof(tm_type));
tm->stock = slist_ptr;
tm->coins = clist_ptr;
}