-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchange.log
More file actions
62 lines (57 loc) · 1.37 KB
/
change.log
File metadata and controls
62 lines (57 loc) · 1.37 KB
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
Version 0.1:
Modules:
- csv_file.c
- csv.h
- automata.h
Included working implementations of:
- csv_validate_table()
- csv_read_table()
- csv_write_table()
Version 0.1.0.1:
Updated Markdown files
Version 0.2:
Added module csv_table.c
Including functions:
- csv_create_table()
- csv_drop_table()
- csv_next_record()
- csv_rewind()
- csv_insert_record()
- csv_delete_current_record()
- csv_get_number_field_by_name()
- csv_get_number_field_by_index()
- csv_get_string_field_by_name()
- csv_get_string_field_by_index()
- csv_set_number_field_by_name()
- csv_set_number_field_by_index()
- csv_set_string_field_by_name()
- csv_set_string_field_by_index()
Added abbreviations for setter and getter functions in csv.h
Version 0.2.1:
Added dfloat.h to make compilation easier
Version 0.2.2:
Added csv_insert_new_record()
Version 0.3:
Added module csv_set.c
Including functions:
- csv_empty_set()
- csv_set_universe()
- csv_set_add()
- csv_set_del()
- csv_set_member()
- csv_set_difference()
- csv_set_complement()
- csv_set_union()
- csv_set_intersection()
- csv_set_difference_f()
- csv_set_complement_f()
- csv_set_union_f()
- csv_set_intersection_f()
- csv_read_set()
- csv_write_set()
- csv_write_set_f()
Added module csv_select.c
Including functions:
- csv_select_subset()
- csv_select_records_by_subset()
- csv_partition_table_by_subset()