michael@0: // Copyright (c) 2011 Google Inc. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: extern void input_root(); michael@0: extern void input_dirname(); michael@0: extern void input_path(); michael@0: extern void input_ext(); michael@0: extern void input_name(); michael@0: michael@0: int main() { michael@0: input_root(); michael@0: input_dirname(); michael@0: input_path(); michael@0: input_ext(); michael@0: input_name(); michael@0: return 0; michael@0: }