Show
Ignore:
Timestamp:
14/08/09 16:29:27 (3 years ago)
Author:
westram
Message:
  • spellchecked all (phew)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/AWTI/AWTI_import.cxx

    r6101 r6141  
    2525 
    2626static char *awtc_fgets(char *s, int size, FILE *stream) { 
    27     // same as fgets but also works with file in MACOS format 
     27    // same as fgets but also works with file in MacOS format 
    2828    int i; 
    2929    for (i = 0; i<(size-1); ++i) { 
     
    4444bool awtc_read_string_pair(FILE *in, char *&s1, char *&s2, size_t& lineNr) { 
    4545    // helper function to read import/export filters. 
    46     // returns true if sucessfully read 
     46    // returns true if successfully read 
    4747    //  
    4848    // 's1' is set to a heap-copy of the first token on line 
     
    519519char *awtc_read_line(int tab,char *sequencestart, char *sequenceend){ 
    520520    /* two modes:   tab == 0 -> read single lines, 
    521        different files are seperated by sequenceend, 
     521       different files are separated by sequenceend, 
    522522       tab != 0 join lines that start after position tab, 
    523        joined lines are seperated by '|' 
     523       joined lines are separated by '|' 
    524524       except lines that match sequencestart 
    525525       (they may be part of sequence if read_this_sequence_line_too = 1 */ 
     
    528528    static int b2offset = 0; 
    529529    const int BUFSIZE = 8000; 
    530     const char *SEPERATOR = "|";    // line seperator 
     530    const char *SEPARATOR = "|";    // line separator 
    531531    struct input_format_struct *ifo; 
    532532    ifo = awtcig.ifo; 
     
    602602            return ifo->b2; 
    603603        } 
    604         strncpy(ifo->b2+b2offset, SEPERATOR, BUFSIZE - 4- b2offset); 
     604        strncpy(ifo->b2+b2offset, SEPARATOR, BUFSIZE - 4- b2offset); 
    605605        b2offset += strlen(ifo->b2+b2offset); 
    606606