Skip to content

Commit

Permalink
Fix typo GAP_IsLargInt -> GAP_IsLargeInt
Browse files Browse the repository at this point in the history
Co-Authored-By: fingolfin <[email protected]>
  • Loading branch information
2 people authored and markuspf committed Nov 15, 2018
1 parent bd9d7ed commit 5841214
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libgap-api.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ int GAP_IsSmallInt(Obj obj)
return obj && IS_INTOBJ(obj);
}

int GAP_IsLargInt(Obj obj)
int GAP_IsLargeInt(Obj obj)
{
return obj && IS_LARGEINT(obj);
}
Expand Down
2 changes: 1 addition & 1 deletion src/libgap-api.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ extern int GAP_IsInt(Obj obj);
extern int GAP_IsSmallInt(Obj obj);

// Returns 1 if <obj> is a GAP large integer, 0 if not.
extern int GAP_IsLargInt(Obj obj);
extern int GAP_IsLargeInt(Obj obj);


// Construct an integer object from the limbs at which <limbs> points (for a
Expand Down

0 comments on commit 5841214

Please sign in to comment.