Justin TerAvest | 4996604 | 2019-07-15 09:53:01 -0600 | [diff] [blame^] | 1 | // 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 | |||||
8 | namespace codelab { | ||||
9 | |||||
10 | int GiveFive(); | ||||
11 | |||||
12 | int Multiply(int x, int y); | ||||
13 | |||||
14 | } // namespace codelab | ||||
15 | |||||
16 | #endif // CODELAB_CODELAB_H_ |