mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 15:37:59 +00:00
csv-read performance iterate
This commit is contained in:
parent
00724f2ba5
commit
fbba5d258f
1 changed files with 13 additions and 0 deletions
13
c/containers/free_flags.h
Normal file
13
c/containers/free_flags.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef FREE_FLAGS_H
|
||||
#define FREE_FLAGS_H
|
||||
|
||||
// For use by various data structures including slls_t and lrec_t. Some
|
||||
// keys/values are dynamically allocated and should be freed the container's
|
||||
// destructor, and some should not. Examples of the former include strduped
|
||||
// keys/values; examples of the latter include data from string literals, or
|
||||
// from mmapped file-input data.
|
||||
|
||||
#define FREE_ENTRY_KEY 0x80
|
||||
#define FREE_ENTRY_VALUE 0x08
|
||||
|
||||
#endif // FREE_FLAGS_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue