Lines Matching refs:three_char
299 struct three_char_t *three_char, in init_three_chars() argument
305 three_char->ch1 = init_val1; in init_three_chars()
306 three_char->ch2 = init_val2; in init_three_chars()
307 three_char->ch3 = init_val3; in init_three_chars()
464 struct three_char_t print_three_chars (struct three_char_t three_char) in print_three_chars() argument
468 printf("%c\t%c\t%c\n", three_char.ch1, three_char.ch2, three_char.ch3); in print_three_chars()
469 return three_char; in print_three_chars()
561 struct three_char_t *three_char; in main() local
588 three_char = (struct three_char_t *)malloc(sizeof(struct three_char_t)); in main()
608 init_three_chars(three_char, 'x', 'y', 'z'); in main()
622 print_three_chars(*three_char); in main()