REORG: include: move hpack*.h to haproxy/ and split hpack-tbl

The various hpack files are self-contained, but hpack-tbl was one of
those showing difficulties when pools were added because that began
to add quite some dependencies. Now when built in standalone mode,
it still uses the bare minimum pool definitions and doesn't require
to know the prototypes anymore when only the structures are needed.
Thus the files were moved verbatim except for hpack-tbl which was
split between types and prototypes.
diff --git a/src/hpack-tbl.c b/src/hpack-tbl.c
index 31c24b2..8c56a0d 100644
--- a/src/hpack-tbl.c
+++ b/src/hpack-tbl.c
@@ -30,8 +30,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include <common/hpack-huff.h>
-#include <common/hpack-tbl.h>
+#include <haproxy/hpack-huff.h>
+#include <haproxy/hpack-tbl.h>
 #include <import/ist.h>
 
 #include <types/global.h>