While looking at the documentation for the Genode source code, I came across a function whose name began with an asterisk (*), in particular,
Hello::Session_component *_create_session(const char *args)
I usually work in C, not C ++, so I'm a bit confused about this. Is this a pointer to a function named _create_session (), is * part of the function name, or is it something else entirely?
Here you can find sample code here .
samoz source
share