mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
8 lines
175 B
C
8 lines
175 B
C
#include "f2c.h"
|
|
|
|
extern integer s_cmp (char *, char *, ftnlen, ftnlen);
|
|
shortlogical
|
|
hl_le (char *a, char *b, ftnlen la, ftnlen lb)
|
|
{
|
|
return (s_cmp (a, b, la, lb) <= 0);
|
|
}
|