Ignore:
Timestamp:
Apr 11, 2025, 6:39:45 PM (5 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
a514fed
Parents:
a800a19
Message:

change manipulator name quoted to quote

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/io/manipulatorsInput.cfa

    ra800a19 r30548de  
    77// Created On       : Sat Jun  8 17:58:54 2019
    88// Last Modified By : Peter A. Buhr
    9 // Last Modified On : Mon Feb  5 21:54:49 2024
    10 // Update Count     : 134
     9// Last Modified On : Fri Apr 11 18:12:25 2025
     10// Update Count     : 135
    1111//
    1212
     
    136136                sin | ignore( getline( wdi( sizeof(s), s ), '%' ) ) | nl; sout | "18" | s;
    137137
    138                 sin | quoted( wdi( sizeof(s), s ) );                    sout | "19" | s;
    139                 sin | quoted( wdi( sizeof(s), s ), '\'' );              sout | "20" | s;
    140                 sin | quoted( wdi( sizeof(s), s ), '{', '}' );  sout | "21" | s;
    141                 sin | quoted( wdi( sizeof(s), s ), 'X', 'Y' );  sout | "22" | s;
    142                 sin | ignore( quoted( wdi( sizeof(s), s ), 'X', 'Y' ) ); sout | "23" | s;
     138                sin | quote( wdi( sizeof(s), s ) );                             sout | "19" | s;
     139                sin | quote( wdi( sizeof(s), s ), '\'' );               sout | "20" | s;
     140                sin | quote( wdi( sizeof(s), s ), '{', '}' );   sout | "21" | s;
     141                sin | quote( wdi( sizeof(s), s ), 'X', 'Y' );   sout | "22" | s;
     142                sin | ignore( quote( wdi( sizeof(s), s ), 'X', 'Y' ) ); sout | "23" | s;
    143143
    144144                char ch;
    145                 sin | quoted( ch );                                                             sout | "24 " | ch;
    146                 sin | quoted( ch, '\"' );                                               sout | "25 " | ch;
    147                 sin | quoted( ch, '{', '}' );                                   sout | "26 " | ch;
    148                 sin | quoted( ch, 'X', 'Y' );                                   sout | "27 " | ch;
    149                 sin | ignore( quoted( ch, 'X', 'Y' ) );                 sout | "28 " | ch;
     145                sin | quote( ch );                                                              sout | "24 " | ch;
     146                sin | quote( ch, '\"' );                                                sout | "25 " | ch;
     147                sin | quote( ch, '{', '}' );                                    sout | "26 " | ch;
     148                sin | quote( ch, 'X', 'Y' );                                    sout | "27 " | ch;
     149                sin | ignore( quote( ch, 'X', 'Y' ) );                  sout | "28 " | ch;
    150150                sin | nl;
    151151        }
Note: See TracChangeset for help on using the changeset viewer.