Skip to content

Commit

Permalink
move Lgm_StrToUppper and Lgm_StrToLower to Lgm_Misc
Browse files Browse the repository at this point in the history
Other string handling is already in Lgm_Misc, so this is
a logical grouping.
  • Loading branch information
drsteve committed Sep 20, 2024
1 parent 0530867 commit c16a62d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libLanlGeoMag/Lgm/Lgm_CTrans.h
Original file line number Diff line number Diff line change
Expand Up @@ -855,8 +855,6 @@ void Lgm_GEOD_to_WGS84( double GeodLat, double GeodLong, double GeodHiegh
void Lgm_Nutation( double T_TT, double nTerms, double *dPSi, double *dEps );
int IsoTimeStringToDateTime( char *TimeString, Lgm_DateTime *d, Lgm_CTrans *c );
int MonthStrToNum( char *str );
char *Lgm_StrToLower( char *str, int nmax );
char *Lgm_StrToUpper( char *str, int nmax );

/*
* Leap Second Related Routines
Expand Down
2 changes: 2 additions & 0 deletions libLanlGeoMag/Lgm/Lgm_Misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@

void Lgm_ReplaceSubString2( char **OutStr, char *OrigStr, char *SubStr, char *RepStr );
void Lgm_ReplaceSubString( char *OutStr, char *OrigStr, char *SubStr, char *RepStr );
char *Lgm_StrToLower( char *str, int nmax );
char *Lgm_StrToUpper( char *str, int nmax );

#endif
1 change: 1 addition & 0 deletions libLanlGeoMag/Lgm_CTrans.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
*/
#include "Lgm/Lgm_CTrans.h"
#include "Lgm/Lgm_Quat.h"
#include "Lgm/Lgm_Misc.h"
#include "config.h"

#include <ctype.h>
Expand Down

0 comments on commit c16a62d

Please sign in to comment.