Browse Source

implementation of checkLogin()

remotes/origin/feature/customer-login
fdai7057 2 years ago
parent
commit
3e76d660b0
  1. 5
      src/LoginCustomer.c
  2. 3
      src/LoginCustomer.h

5
src/LoginCustomer.c

@ -0,0 +1,5 @@
#include "LoginCustomer.h"
bool checkLogin(bool loginSuccessful)
{
return (loginSuccessful) ? true : false;
}

3
src/LoginCustomer.h

@ -0,0 +1,3 @@
#include <stdio.h>
#include <stdbool.h>
bool checkLogin(bool);
Loading…
Cancel
Save