18 lines
306 B
C
18 lines
306 B
C
//
|
|
// Created by zhang on 2024/12/25.
|
|
//
|
|
|
|
#include"sqlite3.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifndef FUNCTION_H
|
|
#define FUNCTION_H
|
|
|
|
void Login(char *username,char*password,int *recall,char *errmsg);
|
|
|
|
void Signin(const char *username,const char*password,int *recall,char *errmsg);
|
|
|
|
void myexit();
|
|
#endif //FUNCTION_H
|