📄 log.h
字号:
// log.h: Header file for the log.c file// Copyright (C) 2005 Andrew Greenberg// Distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2 (June 1991).// See the "COPYING" file distributed with this software for more information.#ifndef ___LOG_H#define ___LOG_H#include "switches.h"// NOTE: See switches.h for the log control defines.#ifdef ENABLE_EPHEMERIS_LOGvoid log_ephemeris( void);#endif#ifdef ENABLE_POSITION_LOGvoid log_position( void);#endif#ifdef ENABLE_PSEUDORANGE_LOGvoid log_pseudoranges( void);#endif#endif // ___LOG_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -