Subversion Repositories svn1-original

Rev

Rev 130 | Rev 134 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 130 Rev 131
Line 714... Line 714...
714
{
714
{
715
    int         i;
715
    int         i;
716
 
716
 
717
 
717
 
718
    team = config.min_team;                      /* Team we are working with */
718
    team = config.min_team;                      /* Team we are working with */
719
    cur( 0, 5 );
-
 
720
    printf( "\nInitializing ALL times for all valid teams from %-d to %-d\n",
-
 
721
            config.min_team, config.max_team );
-
 
722
    if( !getyes( "Continue operation" ) )
-
 
723
        return;
-
 
724
 
-
 
725
    while( team <= config.max_team )
719
    while( team <= config.max_team )
726
    {
720
    {
727
        if( valid_field( team ) )
721
        if( valid_field( team ) )
728
        {
722
        {
729
            ( void ) g_record( team, &team_buf );
723
            ( void ) g_record( team, &team_buf );
Line 774... Line 768...
774
 *========================================================================*/
768
 *========================================================================*/
775
void tm_init(void)
769
void tm_init(void)
776
{
770
{
777
 
771
 
778
    team = config.min_team;                      /* Team we are working with */
772
    team = config.min_team;                      /* Team we are working with */
779
    cur( 0, 5 );
-
 
780
    printf
-
 
781
        ( "\nDelete ALL team information for all valid teams from %-d to %-d\n",
-
 
782
          config.min_team, config.max_team );
-
 
783
    if( !getyes( "Continue operation" ) )
-
 
784
        return;
-
 
785
 
-
 
786
    while( team <= config.max_team )
773
    while( team <= config.max_team )
787
    {
774
    {
788
        if( valid_field( team ) )
775
        if( valid_field( team ) )
789
        {
776
        {
790
            clr_team( team, &team_buf );
777
            clr_team( team, &team_buf );
Line 817... Line 804...
817
 
804
 
818
void tm_gen(void)
805
void tm_gen(void)
819
{
806
{
820
 
807
 
821
    team = config.min_team;                      /* Team we are working with */
808
    team = config.min_team;                      /* Team we are working with */
822
    cur( 0, 5 );
-
 
823
    printf( "Generate DUMMY team names for all valid teams from %-d to %-d\n",
-
 
824
            config.min_team, config.max_team );
-
 
825
    if( !getyes( "Continue operation" ) )
-
 
826
        return;
-
 
827
 
-
 
828
    while( team <= config.max_team )
809
    while( team <= config.max_team )
829
    {
810
    {
830
        if( valid_field( team ) )
811
        if( valid_field( team ) )
831
        {
812
        {
832
            ( void ) g_record( team, &team_buf );
813
            ( void ) g_record( team, &team_buf );