This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Hello dear developers, | |
| I ported this function for JVZoo IPN verification from PHP one at | |
| (https://jvzoo.zendesk.com/hc/en-us/articles/206456857-JVZIPN-How-to-create-your-own-integrated-script) and | |
| wanted to share that with all fellow devs. | |
| REF: https://jvzoo.zendesk.com/hc/en-us/articles/206456857-JVZIPN-How-to-create-your-own-integrated-script |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Was created/modified for Umair. Later made public for reference. Corrections are welcome. | |
| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <inttypes.h> | |
| #include <stdlib.h> | |
| #define TRUE 1 | |
| #define FALSE 0 | |
| #define REPEAT |
NewerOlder