Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_string.cpp
| Show All 11 Lines | |||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #include <stdarg.h> | #include <stdarg.h> | ||||
| #include <stdio.h> | #include <stdio.h> | ||||
| #include "util_foreach.h" | #include "util/util_foreach.h" | ||||
| #include "util_string.h" | #include "util/util_string.h" | ||||
| #include "util_windows.h" | #include "util/util_windows.h" | ||||
| #ifdef _WIN32 | #ifdef _WIN32 | ||||
| # ifndef vsnprintf | # ifndef vsnprintf | ||||
| # define vsnprintf _vsnprintf | # define vsnprintf _vsnprintf | ||||
| # endif | # endif | ||||
| #endif /* _WIN32 */ | #endif /* _WIN32 */ | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| ▲ Show 20 Lines • Show All 260 Lines • Show Last 20 Lines | |||||