1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-02 13:26:03 +02:00

unposted: comments explaining how hashtable must be created

See zsh-workers 46277, 46278, 46279.
This commit is contained in:
Roman Perepelitsa 2020-07-29 08:53:47 +02:00
parent 6f6363de94
commit a8e31c07a7

View File

@ -1180,7 +1180,10 @@ typedef void (*ScanTabFunc) _((HashTable, ScanFunc, int));
typedef void (*PrintTableStats) _((HashTable));
/* hash table for standard open hashing */
/* Hash table for standard open hashing. Instances of struct hashtable can be *
* created only by newhashtable(). In fact, this function creates an instance *
* of struct hashtableimpl, which is made of struct hashtable (public part) *
* and additional data members that are only accessible from hashtable.c. */
struct hashtable {
/* HASHTABLE DATA */