Browse Source

Fix strncmp return type and first parameter

Fix #8117, close #8119
pull/8132/head
Scott Sumner 5 years ago committed by Don HO
parent
commit
73f5492d04
No known key found for this signature in database
GPG Key ID: 6C429F1D8D84F46E
  1. 4
      PowerEditor/installer/APIs/c.xml
  2. 4
      PowerEditor/installer/APIs/cpp.xml

4
PowerEditor/installer/APIs/c.xml

@ -1178,8 +1178,8 @@
</Overload>
</KeyWord>
<KeyWord name="strncmp" func="yes">
<Overload retVal="char *" >
<Param name="char *s1" />
<Overload retVal="int" >
<Param name="const char *s1" />
<Param name="const char *s2" />
<Param name="size_t n" />
</Overload>

4
PowerEditor/installer/APIs/cpp.xml

@ -1624,8 +1624,8 @@
</Overload>
</KeyWord>
<KeyWord name="strncmp" func="yes">
<Overload retVal="char *" >
<Param name="char *s1" />
<Overload retVal="int" >
<Param name="const char *s1" />
<Param name="const char *s2" />
<Param name="size_t n" />
</Overload>

Loading…
Cancel
Save