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