标签:rem interface declare abstract operation not struct ali enc
Common practice
#ifndef ARRAY_H
#define ARRAY_H
typedef struct Array *Array_T;
extern Array_T Array_new(void);
extern void Array_free(Array_T array);
extern void Array_insert(Array_T array, void *datap);
extern void Array_remove(Array_T array, void *datap);
标签:rem interface declare abstract operation not struct ali enc
原文地址:https://www.cnblogs.com/zjbfvfv/p/10329400.html