Tcl Library Source Code

ds.h at [4920b6a29b]
Login

File modules/struct/sets/ds.h artifact 38f99fdc77 part of check-in 4920b6a29b


/* struct::set - critcl - layer 0 declarations
 * Tcl_ObjType 'set'.
 */

#ifndef _DS_H
#define _DS_H 1

#include "tcl.h"

typedef struct S *SPtr;

typedef struct S {
    Tcl_HashTable el;
} S;

#endif /* _DS_H */

/*
 * Local Variables:
 * mode: c
 * c-basic-offset: 4
 * fill-column: 78
 * End:
 */