-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enforce documentation of all public functions
Signed-off-by: Alexey Gladkov <[email protected]>
- Loading branch information
Showing
7 changed files
with
97 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
shell-mail-address(3) | ||
|
||
# NAME | ||
|
||
valid_email - function for the simplest email address validation | ||
|
||
# SYNOPSIS | ||
|
||
- valid_email string | ||
|
||
# DESCRIPTION | ||
|
||
## valid_email | ||
function for the simplest email address validation. It checks for valid characters in | ||
the name and for valid domains. | ||
This function is too naive and needs to be improved or removed. | ||
|
||
# AUTHOR | ||
Authors and contributors of the programs included in the *libshell* package are listed | ||
in the COPYING file. | ||
|
||
# BUGS | ||
Report bugs to the authors. | ||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
shell-string(3) | ||
|
||
# NAME | ||
|
||
fill_mask - functions for working with strings | ||
|
||
# SYNOPSIS | ||
|
||
- fill_mask var str [full-length] | ||
|
||
# DESCRIPTION | ||
|
||
## fill_mask | ||
Creates a mask of equal length string. This pattern is used to process a string | ||
one character at a time. | ||
|
||
# AUTHOR | ||
Authors and contributors of the programs included in the *libshell* package are listed | ||
in the COPYING file. | ||
|
||
# BUGS | ||
Report bugs to the authors. | ||
|
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