qc.hlp (Table of Contents; Topic list)
SWAB.C
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
/* SWAB.C illustrates:
 *      swab
 */
 
#include <stdlib.h>
#include <stdio.h>
 
char from[] = "BADCFEHGJILKNMPORQTSVUXWZY";
char to[] =   "..........................";
 
void main()
{
    printf( "Before:\t%s\n\t%s\n\n", from, to );
    swab( from, to, sizeof( from ) );
    printf( "After:\t%s\n\t%s\n\n", from, to );
}