blob: 696b996b9af37f16761c8101b961ceea7716cfa6 [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
Daniele Castagna7a755de2016-12-16 17:32:30 -05002 * Copyright 2014 The Chromium OS Authors. All rights reserved.
Stéphane Marchesin25a26062014-09-12 16:18:59 -07003 * 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#define PUBLIC __attribute__((visibility("default")))
13#define ALIGN(A, B) (((A) + (B) - 1) / (B) * (B))
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050014#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
Stéphane Marchesin25a26062014-09-12 16:18:59 -070015
16#endif