blob: 6c0280b8adf9f4c3a121f8fdc7097f1993044261 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001// Copyright (c) 2011 Google Inc. 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
5extern void input_root();
6extern void input_dirname();
7extern void input_path();
8extern void input_ext();
9extern void input_name();
10
11int main() {
12 input_root();
13 input_dirname();
14 input_path();
15 input_ext();
16 input_name();
17 return 0;
18}