blob: 0148c7b3b2ac2659b9b52a5d6076448cab08e5d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include "state.h"
#include "cmds.h"
#include <err.h>
#include <math.h>
#include <stdlib.h>
#include <err.h>
stack fceil(stack stack) {
stack.val[stack.count-1] = ceil(stack.val[stack.count-1]);
return stack;
}
stack ffloor(stack stack) {
stack.val[stack.count-1] = floor(stack.val[stack.count-1]);
return stack;
}
command CMD_LIST[] = {
{"ceil", &fceil, "truncate to the next integer"},
{"floor", &ffloor, "truncate to the previous integer"},
{0, 0, 0}
};
void initstate(state *s) {
int numel = 0;
for (int i = 0; CMD_LIST[i].name != 0; i++) numel = i;
char *sorted = malloc(sizeof(char *)*numel);
if (sorted == NULL) err(1, "could not allocate function names");
/* todo: (merge, heap, quick) sort? */
}
|