1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
|
rc = 2;
}
}else{
rc = 1;
}
return rc;
#else
return clearenv();
#endif
}
/*
** Like fopen() but always takes a UTF8 argument.
**
** This function assumes ExtFILE. In other words, symbolic links
|
>
>
|
|
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
|
rc = 2;
}
}else{
rc = 1;
}
return rc;
#else
extern char **environ;
environ = 0;
return 0;
#endif
}
/*
** Like fopen() but always takes a UTF8 argument.
**
** This function assumes ExtFILE. In other words, symbolic links
|