This website works better with JavaScript.
Home
Explore
Help
Sign In
huangyizhe
/
zongheceshi
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
feat(login): add credential check module
tags/v1.0.0
TURNIP\86155
3 weeks ago
parent
f2644a2910
commit
0e86460523
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
src/login_module.c
+ 6
- 0
src/login_module.c
View File
@@ -0,0 +1,6 @@
/* Login feature source file for Git branch practice. */
int Login_CheckCredentials(const char *user, const char *password)
{
return (user != 0) && (password != 0);
}
Write
Preview
Loading…
Cancel
Save