| 63 | } |
| 64 | |
| 65 | static int bindDoubleAttribute(double *attribute, char *value) |
| 66 | { |
| 67 | if(!value || strlen(value) == 0) return MS_FAILURE; |
| 68 | *attribute = atof(value); |
| 69 | return MS_SUCCESS; |
| 70 | } |
| 71 | |
| 72 | static int bindColorAttribute(colorObj *attribute, char *value) |
| 73 | { |
no outgoing calls
no test coverage detected