Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 }