Pergunta

One of my C functions takes the following as it first argument

struct list *items[32]

how do I make a typedef for this?

Foi útil?

Solução

The answer is typedef struct list* ProcList[32];

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top