/* * Copyright (C) 1996-2018 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ #ifndef _SQUID_LOOKUP_T_H #define _SQUID_LOOKUP_T_H typedef enum { LOOKUP_NONE, LOOKUP_HIT, LOOKUP_MISS } lookup_t; extern const char *lookup_t_str[]; #endif /* _SQUID_LOOKUP_T_H */