-
Notifications
You must be signed in to change notification settings - Fork 0
/
obj_func.c
74 lines (63 loc) · 2.25 KB
/
obj_func.c
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*******************************************************************************
* Includes
******************************************************************************/
#include "obj_func.h"
#include "obj.h"
#include <assert.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*******************************************************************************
* Macros
******************************************************************************/
/*******************************************************************************
* Types
******************************************************************************/
/*******************************************************************************
* funcernal function declaration
******************************************************************************/
// Représentation textuelle
// Retourne un OBJ_STR
OBJ *OBJ_func__str__(OBJ *obj1);
OBJ *OBJ_func__repr__(OBJ *obj1);
/*******************************************************************************
* Variables
******************************************************************************/
const void *OBJ_FUNC_FUNC[NB_OBJ_FUNC] = {
/* ADD */ NULL,
/* SUB */ NULL,
/* MUL */ NULL,
/* TDV */ NULL,
/* POW */ NULL,
/* FDV */ NULL,
/* MOD */ NULL,
/* NEG */ NULL,
/* POS */ NULL,
/* ABS */ NULL,
/* EQ */ NULL,
/* NE */ NULL,
/* LT */ NULL,
/* GT */ NULL,
/* LE */ NULL,
/* GE */ NULL,
/* LEN */ NULL,
/* GET */ NULL,
/* STR */ OBJ_func__str__,
/* REPR */ OBJ_func__repr__,
/* int */ NULL,
/* DOUBLE */ NULL};
/*******************************************************************************
* Public function
******************************************************************************/
/*******************************************************************************
* funcernal function
******************************************************************************/
// Représentation textuelle
// Retourne un OBJ_STR
OBJ *OBJ_func__str__(OBJ *obj1) {
char *str = calloc(1, 20); // TODO
sprintf(str, "fun@%ld", OBJ_func_getRaw(obj1));
return OBJ_string_init(str, strlen(str));
}
OBJ *OBJ_func__repr__(OBJ *obj1) { return obj1; }