-1:000000000000 | 0:1600dd29a6a7 |
---|---|
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 | |
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(); | |
10 | |
11 int main() { | |
12 input_root(); | |
13 input_dirname(); | |
14 input_path(); | |
15 input_ext(); | |
16 input_name(); | |
17 return 0; | |
18 } |