18 lines
504 B
C
18 lines
504 B
C
/**
|
|
* @file core_handlers.h
|
|
* @brief 核心处理函数头文件
|
|
* @note 包含主要的功能处理函数声明
|
|
*/
|
|
|
|
#ifndef CORE_HANDLERS_H
|
|
#define CORE_HANDLERS_H
|
|
|
|
#include "config.h"
|
|
|
|
// 核心处理函数声明
|
|
void handleBasicFunctions(); // 处理基本功能菜单
|
|
void handleStatistics(); // 处理统计功能菜单
|
|
void handleAdminFunctions(); // 处理管理功能菜单
|
|
void handleSortStudents(); // 处理学生排序功能
|
|
|
|
#endif // CORE_HANDLERS_H
|