Sunday, August 29, 2010

How to output all the declarations of functions into another file?

if in a file function.c there are:

void aa(void)
{
....
}

void bb(void)
{
....
}

.........

How to get another file function.h automatically in which there are:
void aa(void);
void bb(void);
.........

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

No comments: