1// 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}
19