Lines Matching refs:three_char
409 void init_three_chars (struct three_char_t *three_char, char init_val1, char init_val2, char init_v… in init_three_chars() argument
412 three_char->ch1 = init_val1; in init_three_chars()
413 three_char->ch2 = init_val2; in init_three_chars()
414 three_char->ch3 = init_val3; in init_three_chars()
472 struct three_char_t *three_char, in init_small_structs() argument
488 init_three_chars(three_char, 'a', 'b', 'c'); in init_small_structs()
595 void print_three_chars (struct three_char_t three_char) in print_three_chars() argument
599 printf("%c\t%c\t%c\n", three_char.ch1, three_char.ch2, three_char.ch3); in print_three_chars()
686 struct three_char_t three_char, in print_small_structs() argument
698 print_three_chars(three_char); in print_small_structs()
733 struct three_char_t three_char, in print_long_arg_list() argument
750 three_char, five_char, int_char_combo, d1, d2, d3, in print_long_arg_list()
907 static struct three_char_t *three_char; in main() local
979 three_char = (struct three_char_t *)malloc(sizeof(struct three_char_t)); in main()
994 flags_combo, three_char, five_char, int_char_combo, in main()
1000 *flags_combo, *three_char, *five_char, *int_char_combo, in main()
1013 *flags, *flags_combo, *three_char, *five_char, *int_char_combo, in main()
1029 init_three_chars(three_char, 'x', 'y', 'z'); in main()
1053 print_three_chars(*three_char); in main()