PandA-2024.02
delay.c
Go to the documentation of this file.
1 int delay(int ritardo)
2 {
3  int i;
4  static int somma;
5  somma=0;
6  for (i=0;i<ritardo;i++){
7  somma+=i;
8  }
9  return somma;
10 }
int delay(int ritardo)
Definition: delay.c:1

Generated on Mon Feb 12 2024 13:02:50 for PandA-2024.02 by doxygen 1.8.13