Add missing function names in function headers.

This commit is contained in:
Gregory Nutt 2018-08-13 15:52:59 -06:00
parent a57610c2c4
commit a89f0e3a07
11 changed files with 25 additions and 16 deletions

View File

@ -228,11 +228,12 @@ static void create_objects(void)
/**************************************************************************** /****************************************************************************
* Public Functions * Public Functions
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: * Name: json_main
* *
* Description: * Description:
* * main entry point
* *
****************************************************************************/ ****************************************************************************/

View File

@ -168,7 +168,7 @@ static char g_scratchbuffer[SCRATCHBUFFER_SIZE];
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: * Name: connectem
****************************************************************************/ ****************************************************************************/
static void connectem(void) static void connectem(void)

View File

@ -52,9 +52,11 @@
*************************************************************************/ *************************************************************************/
/************************************************************************* /*************************************************************************
* Name: * Name: skip_cruft
*
* Description: * Description:
* Skip white space and comments. * Skip white space and comments.
*
************************************************************************/ ************************************************************************/
static void skip_cruft(FILE * fp) static void skip_cruft(FILE * fp)
@ -92,8 +94,10 @@ static void skip_cruft(FILE * fp)
*************************************************************************/ *************************************************************************/
/************************************************************************* /*************************************************************************
* Name: * Name: wld_LoadPPM
*
* Description: * Description:
*
************************************************************************/ ************************************************************************/
graphic_file_t *wld_LoadPPM(FILE * fp, char *filename) graphic_file_t *wld_LoadPPM(FILE * fp, char *filename)

View File

@ -127,8 +127,10 @@ static graphic_file_format_t wld_check_format(FILE * fp, char *filename)
*************************************************************************/ *************************************************************************/
/************************************************************************* /*************************************************************************
* Name: * Name: wld_readgraphic_file
*
* Description: * Description:
*
************************************************************************/ ************************************************************************/
graphic_file_t *wld_readgraphic_file(char *filename) graphic_file_t *wld_readgraphic_file(char *filename)

View File

@ -65,10 +65,12 @@
*************************************************************************/ *************************************************************************/
/************************************************************************* /*************************************************************************
* Name: * Name: wld_log2
*
* Description: * Description:
* Return the log base 2 of the argument, or -1 if the argument is not * Return the log base 2 of the argument, or -1 if the argument is not
* an integer power of 2. * an integer power of 2.
*
************************************************************************/ ************************************************************************/
static int wld_log2(int x) static int wld_log2(int x)

View File

@ -158,7 +158,7 @@ void vt100_reverseon(int chn)
#endif #endif
/**************************************************************************** /****************************************************************************
* Name: * Name: vt100_attriboff
* *
* Description: * Description:
* Disable all previously selected attributes. * Disable all previously selected attributes.

View File

@ -105,7 +105,7 @@ void vt100_reverseon(int chn);
#endif #endif
/**************************************************************************** /****************************************************************************
* Name: * Name: vt100_attriboff
* *
* Description: * Description:
* Disable all previously selected attributes. * Disable all previously selected attributes.

View File

@ -89,7 +89,7 @@ static char from_hex(char ch)
#endif #endif
/**************************************************************************** /****************************************************************************
* Name: * Name: to_hex
* *
* Description: * Description:
* Converts an integer value to its hex character, * Converts an integer value to its hex character,
@ -168,7 +168,7 @@ static unsigned char h2int(char c)
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: * Name: url_encode
* *
* Description: * Description:
* Returns a url-encoded version of str. * Returns a url-encoded version of str.

View File

@ -1121,7 +1121,7 @@ static int lesp_parse_cwjap_ans_line(char *ptr, lesp_ap_t *ap)
} }
/**************************************************************************** /****************************************************************************
* Name: * Name: lesp_parse_cwlap_ans_line
* *
* Description: * Description:
* Try to decode @b +CWLAP line. * Try to decode @b +CWLAP line.

View File

@ -1256,7 +1256,7 @@ static int ftpd_pathignore(FAR struct ftpd_pathnode_s *currpath)
} }
/**************************************************************************** /****************************************************************************
* Name: * Name: ftpd_nodefree
****************************************************************************/ ****************************************************************************/
static void ftpd_nodefree(FAR struct ftpd_pathnode_s *node) static void ftpd_nodefree(FAR struct ftpd_pathnode_s *node)
@ -3559,7 +3559,7 @@ static int ftpd_command_stru(FAR struct ftpd_session_s *session)
} }
/**************************************************************************** /****************************************************************************
* Name: * Name: ftpd_command_rnfr
****************************************************************************/ ****************************************************************************/
static int ftpd_command_rnfr(FAR struct ftpd_session_s *session) static int ftpd_command_rnfr(FAR struct ftpd_session_s *session)

View File

@ -644,7 +644,7 @@ static void vi_reverseon(FAR struct vi_s *vi)
} }
/**************************************************************************** /****************************************************************************
* Name: * Name: vi_attriboff
* *
* Description: * Description:
* Disable all previously selected attributes. * Disable all previously selected attributes.