-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
014afd4
commit 8faf440
Showing
4 changed files
with
30 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ set(SOURCES | |
help_menu.c | ||
version_menu.c | ||
github_menu.c | ||
docs_menu.c | ||
) | ||
|
||
add_library(sub64_menus STATIC ${SOURCES}) |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* @file docs_menu.c | ||
* | ||
* @brief This file is used to show docs URL. | ||
* | ||
* @author Mehmet Mert Gunduz | ||
* | ||
* @date 17/11/2023 | ||
*/ | ||
|
||
#include "sub64_menus.h" | ||
|
||
/** | ||
* @brief This function is used to show docs URL | ||
*/ | ||
void docs_menu() | ||
{ | ||
fprintf(stdout, "<https://mertgunduz.github.io/sub64/>\n\n"); | ||
|
||
fprintf(stdout, "docs and all code structure\n"); | ||
fprintf(stdout, "---------------------------\n"); | ||
fprintf(stdout, "you can find functions, code pages, structs and all code related information.\n"); | ||
fprintf(stdout, "also before downloading you can check the general guidelines.\n"); | ||
} |
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 |
---|---|---|
|
@@ -17,5 +17,6 @@ | |
void help_menu(); | ||
void version_menu(); | ||
void github_menu(); | ||
void docs_menu(); | ||
|
||
#endif /* SUB64_MENUS_H */ |