Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Side by Side Diff: test/getopt_s.c

Issue 2344973002: Update libsrtp to version 2.0 (Closed)
Patch Set: Add '.' back to include_dirs Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/dtls_srtp_driver.c ('k') | test/rdbx_driver.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * getopt.c 2 * getopt.c
3 * 3 *
4 * a minimal implementation of the getopt() function, written so that 4 * a minimal implementation of the getopt() function, written so that
5 * test applications that use that function can run on non-POSIX 5 * test applications that use that function can run on non-POSIX
6 * platforms 6 * platforms
7 * 7 *
8 */ 8 */
9 /* 9 /*
10 * 10 *
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 return string[1]; 103 return string[1];
104 case GETOPT_NOT_FOUND: 104 case GETOPT_NOT_FOUND:
105 default: 105 default:
106 return '?'; /* didn't find expected character */ 106 return '?'; /* didn't find expected character */
107 break; 107 break;
108 } 108 }
109 } 109 }
110 110
111 return -1; 111 return -1;
112 } 112 }
OLDNEW
« no previous file with comments | « test/dtls_srtp_driver.c ('k') | test/rdbx_driver.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698