Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
e3-require
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anders Lindh Olsson
e3-require
Commits
6a7be74c
Commit
6a7be74c
authored
10 years ago
by
brands
Browse files
Options
Downloads
Patches
Plain Diff
Slash Backslash converting for env vars
parent
dbe0fd25
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
winunixconv.c
+78
-0
78 additions, 0 deletions
winunixconv.c
winunixconv.dbd
+1
-0
1 addition, 0 deletions
winunixconv.dbd
with
79 additions
and
0 deletions
winunixconv.c
0 → 100644
+
78
−
0
View file @
6a7be74c
/* winunixconv.c
*
* convert backslashes into slashes
*
* $Author: brands $
*
* $Source: /cvs/G/DRV/misc/winunixconv.c,v $
*
*/
#include
<string.h>
#include
<stdlib.h>
#include
<dbScan.h>
#include
<dbStaticLib.h>
#include
<dbAccess.h>
#include
<epicsVersion.h>
#ifdef BASE_VERSION
#define EPICS_3_13
extern
DBBASE
*
pdbbase
;
#else
#define EPICS_3_14
#include
<iocsh.h>
#include
<epicsExport.h>
#endif
int
winunixconv
(
char
*
envvar
)
{
char
*
cp
;
char
*
envstr
=
getenv
(
envvar
);
int
j
=
0
;
while
(
envstr
[
j
]
!=
'\0'
){
if
(
envstr
[
j
]
==
'\\'
)
{
envstr
[
j
]
=
'/'
;
}
j
++
;
}
cp
=
mallocMustSucceed
(
strlen
(
envvar
)
+
strlen
(
envstr
)
+
2
,
"winunixconv"
);
strcpy
(
cp
,
envvar
);
strcat
(
cp
,
"="
);
strcat
(
cp
,
envstr
);
if
(
putenv
(
cp
)
<
0
)
{
errPrintf
(
-
1L
,
__FILE__
,
__LINE__
,
"Failed to set environment parameter
\"
%s
\"
to new value
\"
%s
\"
: %s
\n
"
,
envvar
,
envstr
,
strerror
(
errno
));
free
(
cp
);
}
return
0
;
}
#ifdef EPICS_3_14
static
const
iocshArg
winunixconvArg0
=
{
"envVar"
,
iocshArgString
};
static
const
iocshArg
*
const
winunixconvArgs
[
1
]
=
{
&
winunixconvArg0
};
static
const
iocshFuncDef
winunixconvDef
=
{
"winunixconv"
,
1
,
winunixconvArgs
};
static
void
winunixconvFunc
(
const
iocshArgBuf
*
args
)
{
winunixconv
(
args
[
0
].
sval
);
}
static
void
winunixconvRegister
(
void
)
{
static
int
winunixconvfirstTime
=
1
;
if
(
winunixconvfirstTime
)
{
iocshRegister
(
&
winunixconvDef
,
winunixconvFunc
);
winunixconvfirstTime
=
0
;
}
}
epicsExportRegistrar
(
winunixconvRegister
);
#endif
This diff is collapsed.
Click to expand it.
winunixconv.dbd
0 → 100644
+
1
−
0
View file @
6a7be74c
registrar(winunixconvRegister)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment