Hi, is there any way in Geany to know when reading a C source code file where a
certain function or macro comes from?
For example suppose the following code:
main.c
```
#include <stdio.h>
#include "myprog.h"
int main(void) {
printf(MESSAGE);
return 0;
}
```
myprog.h
```
#ifndef MYPROG_H
#define MYPROG_H
#define MESSAGE "Hello!"
#endif
```
If I wanted to know where printf() comes from it should say it comes from
stdio.h
And if I wanted to know where MESSAGE comes from it should say it comes from
"myprog.h"
Is it possible to do this in Geany?
Thanks in advance!
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/discussions/4539
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/repo-discussions/[email protected]>