[25ae32e] | 1 | #include "const.h" |
---|
| 2 | #include <string.h> |
---|
| 3 | #include <stdio.h> |
---|
| 4 | #include <stdio.h> |
---|
| 5 | #include <string.h> |
---|
| 6 | #include <stdlib.h> |
---|
| 7 | |
---|
| 8 | |
---|
| 9 | // napisy zostaj na miejscu (w line), tylko wskazniki sa ustawian |
---|
| 10 | // i zara dopisywane zera s dopisywane |
---|
| 11 | |
---|
| 12 | inline |
---|
| 13 | int parsetok(char* line, int* a, int* b, char** c, char** d, char** e, char** f) |
---|
| 14 | { |
---|
| 15 | char* field; |
---|
| 16 | if((field=strtok(line,FIELD_SEP))!=NULL) |
---|
| 17 | *a=atoi(field); // nie sprawdzana poprawnosc |
---|
| 18 | else |
---|
| 19 | return 0; |
---|
| 20 | if((field=strtok(NULL,FIELD_SEP))!=NULL) |
---|
| 21 | *b=atoi(field); // nie sprawdzana poprawnosc |
---|
| 22 | else return 1; |
---|
| 23 | if((*c=strtok(NULL,FIELD_SEP))==NULL) return 2; |
---|
| 24 | if((*d=strtok(NULL,FIELD_SEP))==NULL) return 3; |
---|
| 25 | if((*e=strtok(NULL,FIELD_SEP))==NULL) return 4; |
---|
| 26 | if((*f=strtok(NULL,FIELD_SEP))==NULL) return 6; |
---|
| 27 | return 6; |
---|
| 28 | } |
---|
| 29 | |
---|
| 30 | // napisy s kopiowane |
---|
| 31 | inline |
---|
| 32 | int scantok(const char* line, int* a, int* b, char* c, char* d, char* e=NULL, char* f=NULL) |
---|
| 33 | { |
---|
| 34 | return sscanf(line," %d %d %s %s %s %s", a, b, c, d, e, f); |
---|
| 35 | } |
---|
| 36 | |
---|
| 37 | inline |
---|
| 38 | int printtok(char* line, int a, int b, char* c, char* d, char* e, char* f, char* parms) |
---|
| 39 | { |
---|
| 40 | sprintf(line,"%04d %02d %s %s %s %s `%s\n", a, b, c, d, e, f, parms); |
---|
| 41 | } |
---|
| 42 | |
---|
| 43 | inline |
---|
| 44 | int printtok(char* line, int a, int b, char* c, char* d, char* e, char* f) |
---|
| 45 | { |
---|
| 46 | sprintf(line,"%04d %02d %s %s %s %s\n", a, b, c, d, e, f); |
---|
| 47 | } |
---|
| 48 | |
---|
| 49 | inline |
---|
| 50 | int printtok(char* line, int a, int b, char* c, char* d) |
---|
| 51 | { |
---|
| 52 | sprintf(line,"%04d %02d %s %s\n", a, b, c, d); |
---|
| 53 | } |
---|