Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
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.
5 extern void input_root();
6 extern void input_dirname();
7 extern void input_path();
8 extern void input_ext();
9 extern void input_name();
11 int main() {
12 input_root();
13 input_dirname();
14 input_path();
15 input_ext();
16 input_name();
17 return 0;
18 }