** Returns the number of glyphs in string */
| 1943 | ** Returns the number of glyphs in string |
| 1944 | */ |
| 1945 | int msGetNumGlyphs(const char *in_ptr) |
| 1946 | { |
| 1947 | int numchars=0; |
| 1948 | |
| 1949 | while( msGetNextGlyph(&in_ptr, NULL) != -1 ) |
| 1950 | numchars++; |
| 1951 | |
| 1952 | return numchars; |
| 1953 | } |
| 1954 | |
| 1955 | static int cmp_entities(const void *e1, const void *e2) { |
| 1956 | struct mapentities_s *en1 = (struct mapentities_s *) e1; |
no test coverage detected