0

I was going through the logger code and came across a function

bool  LogMessage(const char *szFor, ...)

What does ... indicates here?

Sourav Ghosh
  • 133,132
  • 16
  • 183
  • 261
Akansha Bagale
  • 129
  • 1
  • 13

1 Answers1

4

This is called an ellipsis notation. This means, the function is a variadic function.

It can legally accept any number and type of incoming arguments.

Sourav Ghosh
  • 133,132
  • 16
  • 183
  • 261