blob: 1a377104a38176bfcff5633eba7b1bc8c417ac36 [file] [log] [blame]
Justin TerAvest49966042019-07-15 09:53:01 -06001// Copyright 2019 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CODELAB_CODELAB_H_
6#define CODELAB_CODELAB_H_
7
8namespace codelab {
9
10int GiveFive();
11
12int Multiply(int x, int y);
13
14} // namespace codelab
15
16#endif // CODELAB_CODELAB_H_