blob: 13aee4544515873d034ce51c1a8af20bef0ce22c [file] [log] [blame]
Stéphane Marchesinae37e6c2014-08-08 18:19:40 -07001/*
2 * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef UTIL_H
8#define UTIL_H
9
10#define MAX(A, B) ((A) > (B) ? (A) : (B))
11#define ARRAY_SIZE(A) (sizeof(A)/sizeof(*(A)))
12
13#endif