9 lines
256 B
C
9 lines
256 B
C
/* This is no longer used by tinyldap, but there is a reference in
|
|
* old-parse.c so I'm keeping the source file in the repository */
|
|
#include "mduptab.h"
|
|
|
|
void mduptab_init_reuse(mduptab_t* t,mstorage_t* s) {
|
|
mstorage_init(&t->table);
|
|
t->Strings=s;
|
|
}
|