liberty pin names with brackets and .'s

Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
James Cherry
2023-02-18 17:20:40 -07:00
parent 84271b26da
commit 5d45a07e34
21 changed files with 570 additions and 325 deletions
+8 -4
View File
@@ -22,8 +22,10 @@
namespace sta {
char *
spefToSta(const char *token, char spef_divider,
char path_divider, char path_escape)
spefToSta(const char *token,
char spef_divider,
char path_divider,
char path_escape)
{
const char spef_escape = '\\';
char *trans_token = new char[strlen(token) + 1];
@@ -63,8 +65,10 @@ spefToSta(const char *token, char spef_divider,
}
char *
staToSpef(const char *token, char spef_divider,
char path_divider, char path_escape)
staToSpef(const char *token,
char spef_divider,
char path_divider,
char path_escape)
{
const char spef_escape = '\\';
char *trans_token = new char[strlen(token) + 1];