From 60c7d789ce21cb77bdf9dd2c8cb22e86232d903f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 11 Feb 2019 01:34:40 +0100 Subject: Rewrote content_line, and how parameters are stored. --- pair.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pair.h') diff --git a/pair.h b/pair.h index e3822a9b..e96cf180 100644 --- a/pair.h +++ b/pair.h @@ -7,8 +7,8 @@ #if defined(T) && defined(V) typedef struct { - T left; - V right; + T key; + V val; } PAIR(T, V); INIT_F(PAIR(T, V)); -- cgit v1.2.3