sparklemotion/nokogiri

View on GitHub
gumbo-parser/src/tag_lookup.h

Summary

Maintainability
Test Coverage
#ifndef GUMBO_TAG_LOOKUP_H_
#define GUMBO_TAG_LOOKUP_H_

#include "nokogiri_gumbo.h"

typedef struct {
    const char *key;
    const GumboTag tag;
} TagHashSlot;

const TagHashSlot *gumbo_tag_lookup(const char *str, size_t len);

#endif // GUMBO_TAG_LOOKUP_H_