In the functions list-plugin, when viewing old-style c code, the functions doesn't show.
Once upon a time, code was styled as this:
int main(argc, argv) int argc; char *argv[]; { ... }
instead of the modern: int main(int argc, char *argv[]){ ... }
For a working example, lookup the source for cron.
Yes, indeed it is not supported and it will not be supported.
This doesn't work also:
int main ( int argc, char *argv[] ) { }
This depends on scintilla regex search.
Best Regards Jens
In the functions list-plugin, when viewing old-style c code, the functions doesn't show.
Once upon a time, code was styled as this:
int
main(argc, argv)
int argc;
char *argv[];
{
...
}
instead of the modern:
int main(int argc, char *argv[]){
...
}
For a working example, lookup the source for cron.
Yes, indeed it is not supported and it will not be supported.
This doesn't work also:
int main (
int argc,
char *argv[]
)
{
}
This depends on scintilla regex search.
Best Regards
Jens