I'm learning C, I was looking at https://github.com/mruby/mruby/blob/master/src/load.c and this line made me very confused:
mrb_irep* read_irep_record_1
On line 40.
I can see that this is a pointer of some sort. What I'd like to know is the following What does this do? How do you use them? What are these called? How do they work? How can I replicate this in a program? I've only this used in C projects, is it recommended to use these in C++? Can you do this in C++?
I searched a bit on Stackoverflow for pointer functions but couldn't find anything like this.
Thanks in advance!
mrb_irep. Your questions are rather basic, and they require long answers. I suggest reading a book or googling for C or C++ introduction.