** Return TRUE if a semicolon occurs anywhere in the first N characters ** of string z[]. */
| 1324 | ** of string z[]. |
| 1325 | */ |
| 1326 | static int _contains_semicolon(const char *z, int N){ |
| 1327 | int i; |
| 1328 | for(i=0; i<N; i++){ if( z[i]==';' ) return 1; } |
| 1329 | return 0; |
| 1330 | } |
| 1331 | |
| 1332 | |
| 1333 |