eq.h
来自「circuit calculation program」· C头文件 代码 · 共 26 行
H
26 行
#ifndef __EQ_H__
#define __EQ_H__
#include "types.h"
typedef struct eq_item_def {
struct eq_item_def *next;
float_t coef;
int var_index;
} EQ_item_t;
int EQ_start ();
int EQ_add (float_t constantst,EQ_item_t *);
int EQ_end ();
int EQ_reset ();
int EQ_sort ();
EQ_item_t *EQ_item_alloc ();
int EQ_item_free (EQ_item_t *q);
int EQ_add_const (float_t constant);
extern float_t *vars;
#endif /* __EQ_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?