/* Copyright (c) 2013-2018 Dovecot authors, see the included COPYING file */
#include "auth-common.h"
#include "array.h"
#include "str.h"
#include "var-expand.h"
#include "db-dict.h"
const struct db_dict_key *
{
return key;
}
return NULL;
}
const char *
{
const char *p, *name;
if (*p != '%') {
p++;
continue;
}
if (size == 0) {
/* broken %variable ending too early */
break;
}
p += idx;
} else if (size == 1) {
} else {
}
p += size;
}
}
}