#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include "commands.h"
#include "common.h"
Include dependency graph for main.c:
Defines | |
#define | HISTORY_FILE ".peakfind_history" |
The name of the command-history file. | |
#define | MAXCMDLINE 1024 |
If readline is not available, the maximum number of characters per line. | |
Functions | |
int | yyparse () |
The generated parsing function. | |
int | main (int argc, char *argv[]) |
The main function. | |
int | pf_parse_command (char *command) |
Parse a command string. | |
void | pf_execute_command () |
Execute the next command. | |
Variables | |
int | should_quit |
Should the main loop terminate. | |
pf_cal_fit | current_cal |
The current calibration. | |
pf_data | current_data |
The current data set. | |
int | has_data |
Valid data-set flag. |
|
The name of the command-history file.
|
|
If readline is not available, the maximum number of characters per line.
|
|
The main function.
|
Here is the call graph for this function:
|
Execute the next command.
|
Here is the call graph for this function:
|
Parse a command string.
|
Here is the call graph for this function:
|
The generated parsing function.
|
|
The current calibration.
|
|
The current data set.
|
|
Valid data-set flag.
|
|
Should the main loop terminate.
|