0

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

struct list *items[32]

how do I make a typedef for this?

Bilal Syed Hussain
  • 8,664
  • 11
  • 38
  • 44

1 Answers1

0

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

Bilal Syed Hussain
  • 8,664
  • 11
  • 38
  • 44