summaryrefslogtreecommitdiffstats
path: root/Bachelor/Mikroprozessorsysteme2/ARM202U/EXAMPLES/CANDASM/TWO_CH.C
blob: 9f4c72f3a2f875587cce4b6e9c01bbc39d1f60b3 (plain)
1
2
3
4
5
6
7
8
9
typedef struct two_ch_struct
{ char ch1;
  char ch2;
} two_ch;
 
two_ch max( two_ch a, two_ch b )
{
  return (a.ch1>b.ch1) ? a : b;
}