| 767 | } |
| 768 | |
| 769 | char *msLayerGetProcessingKey( layerObj *layer, const char *key ) |
| 770 | { |
| 771 | int i, len = strlen(key); |
| 772 | |
| 773 | for( i = 0; i < layer->numprocessing; i++ ) |
| 774 | { |
| 775 | if( strncasecmp(layer->processing[i],key,len) == 0 |
| 776 | && layer->processing[i][len] == '=' ) |
| 777 | return layer->processing[i] + len + 1; |
| 778 | } |
| 779 | |
| 780 | return NULL; |
| 781 | } |
| 782 | |
| 783 | |
| 784 | /************************************************************************/ |
no test coverage detected