/* * This file is part of LibNSLayout * Licensed under the ISC License, http://opensource.org/licenses/ISC * Copyright 2015 Michael Drake */ /** \file src/util/util.h * Layout object handling */ #ifndef nslayout_util_util_h_ #define nslayout_util_util_h_ #ifndef UNUSED #define UNUSED(x) (void)(x) #endif #ifndef SLEN #define SLEN(x) (sizeof((x)) - 1) #endif #endif