PostGIS
3.4.0dev-r@@SVN_REVISION@@
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
c
d
f
g
i
l
m
p
q
w
Variables
a
b
c
d
f
g
h
i
l
n
o
p
r
s
t
u
v
x
y
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
Properties
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
w
y
Typedefs
_
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
y
Enumerations
Enumerator
a
c
d
e
f
g
i
j
l
m
p
r
s
t
u
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Macros
Pages
◆
rtpg_strrstr()
char* rtpg_strrstr
(
const char *
s1
,
const char *
s2
)
Definition at line
265
of file
rtpg_internal.c
.
265
{
266
int
s1len = strlen(s1);
267
int
s2len = strlen(s2);
268
char
*
s
;
269
270
if
(s2len > s1len)
271
return
NULL;
272
273
s
= (
char
*) (s1 + s1len - s2len);
274
for
(;
s
>= s1; --
s
)
275
if
(strncmp(
s
, s2, s2len) == 0)
276
return
s
;
277
278
return
NULL;
279
}
s
char * s
Definition:
cu_in_wkt.c:23
References
s
.
Referenced by
RASTER_reclass()
.
Here is the caller graph for this function:
raster
rt_pg
rtpg_internal.c
Generated by
1.9.1