//FUNCAO_CONVERTER_ TEMPO_EM_MINUTOS

 

int StrToSeg(char *tempo){

  int h,m,s,tseg;

  char aux[2];

 

  //horas

  aux[0]=tempo[0]; 

  aux[1]=tempo[1];

  aux[2]=tempo[2];

  aux[3]=tempo[3];

  h=atoi(aux);

  h=h*60*60;

 

  //minutos

  aux[0]=tempo[3]; 

  aux[1]=tempo[4]; 

  m=atoi(aux);

  m=m*60;

 

  //segundos

  aux[0]=tempo[6]; 

  aux[1]=tempo[7]; 

  s=atoi(aux);

  s=atoi(aux);

 

  //total em segundos

  tseg=h+m+s;

  return tseg;

}