-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
naming change only. no functional changes. cfunc -> rv_cfg
- Loading branch information
1 parent
ae26f5b
commit 9c1341c
Showing
7 changed files
with
24 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
// vim: set tabstop=4 shiftwidth=4 expandtab | ||
// ============================================================================ | ||
// Filename: cfunc.h | ||
// Filename: rv_cfg_func.h | ||
// | ||
// Description: Functions prototype support for cfunc | ||
// Description: Functions prototype support for rv_cfg | ||
// | ||
// Author(s): Bill McSpadden ([email protected]) | ||
// | ||
// Revision: See git log | ||
// ============================================================================ | ||
//#ifndef __CFUNC_H__ | ||
//#define __CFUNC_H__ | ||
// | ||
|
||
#pragma once | ||
|
||
|
@@ -50,7 +47,7 @@ int rv_cfg_init(void); | |
char * rv_cfg_get_string(rv_cfg_e e); | ||
rv_cfg_e rv_cfg_get_enum(char * s); | ||
int rv_cfg_build_from_file(rv_cfg_e rv_cfg_type, char * filename ); | ||
unsigned int cfunc_int_c(char *); | ||
unsigned int rv_cfg_int_c(char *); | ||
|
||
|
||
|
||
|
@@ -64,9 +61,9 @@ unsigned int cfunc_int_c(char *); | |
// | ||
// TODO: make the return value of type void. | ||
|
||
//INT_RET_TYPE cfunc_int(sail_int *, char *, unit); // TODO: find out why unit is sometimes required, sometimes not INT_RET_TYPE cfunc_int(sail_int *, char *); | ||
//INT_RET_TYPE rv_cfg_int(sail_int *, char *, unit); // TODO: find out why unit is sometimes required, sometimes not INT_RET_TYPE rv_cfg_int(sail_int *, char *); | ||
|
||
int cfunc_int(sail_int *, char *); | ||
unit cfunc_dump_yaml(char *); | ||
int rv_cfg_int(sail_int *, char *); | ||
unit rv_cfg_dump_yaml(char *); | ||
|
||
//#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters