mkhufftbl.py: Update doc

This commit is contained in:
Tatsuhiro Tsujikawa 2014-10-25 01:08:57 +09:00
parent b4ed3324c0
commit 992ca93533
1 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,13 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This script reads Huffman Code table [1] and generates symbol table
# and decoding tables in C language. The resulting code is used in
# lib/nghttp2_hd_huffman.h and lib/nghttp2_hd_huffman_data.c
#
# [1] http://http2.github.io/http2-spec/compression.html
from __future__ import unicode_literals
import re
import sys