I'm new to C and recently when i'm learning zeromq (work related) I'm kinda confused with the static void *:
...
static void *
worker_task(void *args)
{
...
What is the exact the meaning of that line? I tried looking for answer, I thought that it was a pointer but It is kinda odd, given that pointer usually have a variable name after the '*'.
Thank you very much, I hope It's not rude of me for asking this seemingly "novice" question. :)