summaryrefslogtreecommitdiff
path: root/driver/linkloader/tests/images/test.c
blob: 01b69a116ffb5aa845b78a72746658cce71d9057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * Copyright 2011, The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include<stdio.h>
static void hello_function(const char *ptr){
        printf("%s", ptr);
}
int my_add(int para_x, int para_y){
        return para_x + para_y;
}
int global_z_i;
double global_z_d;
int global_big_z_i[1000];
double global_big_z_d[1000];
static int global_static_z_i;
static double global_static_z_d;
static int global_static_big_z_i[1000];
static double global_static_big_z_d[1000];
int global_z_i_init = 1;
double global_z_d_init = 1.1;
/*extern int extern_z_i;   */
/*extern double extern_z_d;*/
int main(){
        static int local_static_z_i;
        static double local_static_z_d;
        static int local_static_z_i_init = 2;
        static double local_static_z_d_init = 2.2;
        local_static_z_i = local_static_z_i_init;
        local_static_z_d = local_static_z_d_init;
        printf("%d %f\n", local_static_z_i, local_static_z_d);
        printf("%d %f\n", local_static_z_i_init, local_static_z_d_init);
        hello_function("Hello world!1\n");
        hello_function("Hello world!2\n");
        hello_function("Hello world!3\n");
        global_z_i = my_add(1,2);
        global_z_d = 3.3;
        printf("%d %f\n", global_z_i, global_z_d);
        global_big_z_i[100] = 4;
        global_big_z_d[100] = 4.4;
        printf("%d %f\n", global_big_z_i[100], global_big_z_d[100]);
        global_static_z_i = my_add(2,1);
        global_static_z_d = 3.3;
        printf("%d %f\n", global_static_z_i, global_static_z_d);
        int local_z_i = global_static_z_i = global_z_i;
        double local_z_d = global_static_z_d = global_z_d;
        printf("%d %f\n", local_z_i, local_z_d);
        global_static_big_z_i[500] = 5;
        global_static_big_z_d[500] = 5.5;
        printf("%d %f\n", global_static_big_z_i[500], global_static_big_z_d[500]);
        global_z_i_init = 6;
        global_z_d_init = 6.6;
        printf("%d %f\n", global_z_i_init, global_z_d_init);
        /*printf("%d %f\n", extern_z_i, extern_z_d);*/
        return 0;
}